#include #include using namespace std; int main() { int i {10}; int j {20}; //Change i from old value (10) to new value (11). //Then use the new value (11) in the rest of the expression. j = ++i; //Put the new value (11) into j. cout << "i is " << i << "\n" << "j is " << j << "\n"; return EXIT_SUCCESS; }