#include using namespace std; int main() { int i; // initialize the LCV i = 1; // while ( i < 11) { // while (i != 11) { while ( i <= 10) { i++; cout << i << endl; } return 0; }