#include using namespace std; int main() { int x1 = 12 ; int y1 = 12 ; int z1 ; z1 = x1-- + --y1 ; cout << "z1 = " << z1 << endl ; z1 = x1-- + y1-- ; cout << "z1 = " << z1 << endl ; z1 = x1 + y1 ; cout << "z1 = " << z1 << endl ; if ( z1-- == 20 ) z1-- ; // After the conditional expression z1 is 19 // and now we have another "--" so z1 is 18 --z1 ; //Now z1 is 17 cout << "z1 = " << z1 << endl ; }