单项选择题

请读程序:
#include<stdio.h>
main()
int a;float b,c;
scanf("%2d%3f%4f",&a,&b,&c) ;
printf("\na=%d,b=%f,c=%f\n",a,b,c) ;
若运行时从键盘上输入9876543210
,则上面程序的输出结果是______。