单项选择题

下列程序的运行结果为( )。
#define MAX(x,y)(x)>(y)(x):(y)
main()
int a=2,b=3,c=1,d=3,t;
printf("%d\n",(MAX(a+b,c+d))*100);

A.500
B.5
C.4
D.400