通过次数
0
提交次数
运行时输入123456,
输出 12,6
123456
12,6
#include<stdio.h> main() { int a,b; scanf("%2d%*3s%d",&a,&b); printf("%d,%d",a,b); }