#include "stdio.h"
#include "stdlib.h"
#include "time.h"
void main()
{
int h,m,s,a,b;
for(h=00;h<24;h++)
{
for(m=00;m<60;m++)
{
for(s=00;s<60;s++)
{
a=(time(NULL));
do
{
b=(time(NULL));
}while(a==b);
printf("\t\t\t\t%d:%d:%d\r",h,m,s);
}
}
}
}