8f1093f
1 2 3 4 5 6 7 8 9 10 11 12
#include <iostream> int main() { int x = 0; int y = 0; x = ++y; y = ++y + ++x; y++; x = --x + y; std::cout << "x=" << x << "\n"; std::cout << "y=" << y << "\n"; }