重修_c++入门 A+B Problem
注意 题面 看 luogu
https://www.luogu.org/problemn
#include<bits/stdc++.h> using namespace std; int main() { int a,b; cin>>a>>b; cout<<a+b;
return 0; }
https://www.luogu.org/problemn
#include<bits/stdc++.h> using namespace std; int main() { int a,b; cin>>a>>b; cout<<a+b;
return 0; }