#include <stdio.h>
#include <time.h>

int main()
{
    time_t sec;
    sec = time(NULL);

    if (sec < 1318075200) {
        printf("hello, world\n");
    } else {
        printf("goodbye, dad\n");
    }
    return 0;
}