#include <iostream>
#include <time.h>
using namespace std;
void main(void)
{
time_t firsttime;
time(&firsttime);
cout<<firsttime<<endl;
for(long i= 1;i < 200000000;i++)
{
NULL;
}
time_t secondtime;
time(&secondtime);
cout<<"after for ()"<<endl;
cout<<secondtime<<endl;
}