文档分类
#include<stdio.h> int main() {
int a,b,sum;
scanf("%d%d",&a,&b); sum=a+b;
printf("%d\n",sum); return 0; }