#include #include int main() { for (int i=0; i<2500; i++) { fprintf(stdout, ".", i); if (i%50 == 0) {printf("%d", i); sleep(1); } } printf("\n"); }