#include using namespace std; int main() { int x = 3; cout << "Started x at " << x << endl; x++; cout << "After x++, now x is = " << x << endl; x--; cout << "After x--, now x is = " << x << endl; }