#include <dos.h>
     #include <iostream.h>
     #include <conio.h>

     void main()
     {
          int detik = 0;


          while (true)
          {
               gotoxy(10, 2); cout << detik << " ";
               detik++;
               sleep(1);
          }
          getch();
     }












#Selamat Mencoba#