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