a+b……
真的是a+b(为了不影响题解的完整性……咳咳…)
#include <iostream>#include<cstdio>#include<cstdlib>using namespace std;int main(){ int a,b; cin>>a>>b; cout<<a+b;}