单项选择题

执行下面的程序后,a的值是( )。   #define SQR(X) X*X   main( )   { int a=10,k=2,m=1;   a/=SQR(k+m)/SQR(k+m);   printf("%d\n",a); }

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