#include #include int main(int argc, char *argv[]) { int A; A=1; while ( A <= 10 ) { printf ("%d \n", A); A++; } printf ("FIM!\n"); system("PAUSE"); return 0; }