读下面程序并回答问题;
#include"stdio.h"
void main()
{
int x=1,y=0,a=0,b=0;
switch(x)
case 1:
switch(y)
case 0:a++;break;
case 1:b++;break;
}
case 2:
a++;b++;break;
printf("%d,%d\n",a,b);
程序的运行结果为( )
2,1
1,2
1,1
0,0