1234567891011
int fn(int x, int &y) { cout << "At the moment, x=" << x << endl; x*=2; cout << "Now, x=" << x << endl; y = pow(y,2); cout << "And y=" << x << endl; return x-y; }