填空题

以下程序的输出结果是______。
main()
int a=1, b=2;
a=a+b; b=a=b; a=a=b;
printf("%d, %d\n", a, b);

【参考答案】

2,1