#include using namespace std; int main() { int i {1}; while(i < 11 ) { ++i; cout << " i = " << i << endl; } return 0; }