int main() { int x = 10; int y = x*x; int z = 2*x + 30; if (3*z < y){ y = y+1; } else{ y = y+2; } z = y+10; return z; }