#include"stdio.h" mian() { int a,b,c; scanf("%d,%d",&a,&b); c=a+b; printf("%d",c); } 当我输入1 2的时候为什么输出结果是3130而不是3呢?