填空题

以下程序运行后的输出结果是______。
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);

【参考答案】

U