这是一道非常常见的题啦
,只需要输入a和b 的值就可以输出了。

#include<iostream>
#include<cstdio>
using namespace std;
int a,b;
int main()
{
cin>>a>>b;
printf("%d",a+b);
}