#include <stdio.h>
#include <time.h>

int main() {

    printf("time(0) currently = %d\n", time(0));
    return 0;
}
