#include #define max(a,b) (a)>(b) ? (a) : (b)int main(void){ int x=15,y=7; printf("The MAX is %d\n",max(x,y)); return 0;}