int main() { int x; int a = 8; int b = 5; int c = 7; int d = 3; x = a * b + c * d - d / 3 + 2; x = c - 2 * b + 3 / d - 5 * d; return x; }