1 2 3 4 5 6 7 8 9 10 11
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; }