填空题

执行以下程序时输入1234567<CR>,则输出结果是 【6】
#include <stdio.h>
main()
{ int a=1,b;
scanf("%2d%2d",&a,&b); prinff("%d %dhn",a,b);
}

【参考答案】

12 34