填空题

执行以下程序时,输入1234567,则输出结果是______。
#include<stdio.h>
main()
int a=1,b;
scanf("%2d%2d",&a&b);printf("%d%d",a,b);

【参考答案】

1 2 34