执行以下程序时输入 1234567<CR>, 则输出结果是 _[6]_______ .
#include <stdio.h>
main()
{ int a=1,b;
scanf("%2d%2d",&a,&b);printf("%d %d\n",a,b);
}