int chain() { int x = 0; int y = x + 10; int z = y * 2; int w = z - 3; int a = w + 300; int b = a * 4; int c = b - 7; return c; }