int main() { int x = 6; int y = 7; int z = 0; if ((x * y) > (x - y)) { z = x * y; } else { z = x - y; } return z; }