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