#include int main() { unsigned i = 1; for (; i <= 10; ) { printf("Cuenta: %d.\n", i); i++; } system("pause"); return 0; }