这道题有够初级吧,解题思路就不讲了,太水了

#include <iostream>//这里也可以用万能库(#include<bits/stdc++.h>)
using namespace std;
int a,b;//也可以不用全局变量
int main()
  {
    cin>>a>>b;//读入
    cout<<a+b;//输出
    return 0;
}