#include using namespace std; int main() { int x = 5, y = 5; cout << x-- << " " << --y ; // Outputs 5 4 return 0; }
int x = 5; x--; cout << x << endl; //outputs 4