#include <stdio.h> #include <unistd.h> int main(){ int bla=0; for(;;){ printf("%d",bla); bla++; sleep(1); system("cls");} }