题解 | #两数求和#
两数求和
https://www.nowcoder.com/practice/f1b704af4f654be285552bea53ce6534
#include <iostream>
using namespace std;
int main() {
int a;int b;
cin>>a;cin>>b;
int sum=(a+b);
cout<<sum<<endl;
// write your code here......
return 0;
}
