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