#include using namespace std; int main() { int i{4}; while (i > 0) { cout << "I = " << i << endl; //i--; } return 0; }