运行结果为 a: b:
sum=
#include <stdio.h> int main() { int a,b; scanf("a:%d",&a); scanf("b:%d",&b); printf("sum=%d\n",a+b); return 0; }