单项选择题

请读程序:
#include <stdio.h>
#define SUB(X,Y) (X)*Y
main()
int a=3,b=4;
printf("%d\n",SUB(a++,b++));
上面程序的输出结果是( )。

A.12
B.15
C.16
D.20