#include<stdio.h> #define ADD(a) (a)+(a) main() { int x=4,y=6,z=7; int w = z*ADD(x+y); printf("%d",w); }