填空题

以下程序在运行时若输入:1234567,则程序的运行结果是______。
#include<stdio.h>
main()
 int x, y;
 scanf("%2d%1d", &x, &y); printf("%d\n", x+y);

【参考答案】

O