#include #include int main() { clrscr(); for (int x = 1; x <= 70; x++) { gotoxy(1, x); printf("%d", x); delay(500); gotoxy(1, x); if (x < 70) { printf(" "); } } return 0; }