#include <iostream>
int main()
{
    int x=10, y=5;
    (++y) = (++x);
    std::cout << " y = " << y << " x = " << x << '\n';
}
