单项选择题

执行下列程序后,输出的结果是( )。
#include<stdio.h>
#define S(X)X*X
void main()
int a=9, k=3, m=2;
a/=S(k+m)/S(k+m);
printf("%d", a);

A.1
B.4
C.9
D.0