#include <stdio.h> #include <stdlib.h> main() { int cont = 0; while (cont<100){ cont ++; printf("%d\t", cont); } printf("\n"); system("pause"); }