/*
TASK:skok
LANG:C++
*/
#include <time.h>
#include <stdio.h>
//#include <dos.h>

int main(void)
{
   clock_t start, end;
   start = clock();

//   delay(2000);

   end = clock();
   printf("The time was: %f\n", difftime(start,end) );

   return 0;
}
