#include#define M(x,y) x - yint main() { int a = 4,b = 3,c = 5; printf("%d\n",a*M(b,c)); printf("%d\n",4*(3 - 5)); return 0;}