给出程序的运行结果,程序运行时从键盘输入:54321
#include 
int main()
{  
    int a,b,s;
    scanf("%2d%2d",&a,&b);
    s=a/b;
    printf("s=%d",s);
    return 0;
}

A、1
B、1.6875
C、2
D、0