题目简单,注意输出格式即可。
#include<stdio.h> int main() { int A,B,sum; scanf("%d %d",&A,&B); sum=A+B; printf("%d\n",sum); return 0; }