#include <stdio.h>#define MAX(a,b) ((a)>(b)?( a):(b))int main() { int x=100; int y=200; int z=MAX(x,y); printf("%d\n",z); }