#include <stdio.h>
main()
{
    int answer;   

    answer = 2 + 2;

    printf("The answer is %d\n");
    return (0);
}

