#include<stdio.h>
#include<time.h>
int
main(){
time_t
timep;
long
seconds =
time
(&timep);
printf
(
"%ld\n"
,seconds);
,timep);
return
0;
}