题解 | #两数求和#
两数求和
http://www.nowcoder.com/practice/f1b704af4f654be285552bea53ce6534
using namespace std;
int main() {
int a,b;
cin>>a>>b;
cout<<(a+b);
// write your code here......
return 0;
}
两数求和
http://www.nowcoder.com/practice/f1b704af4f654be285552bea53ce6534
using namespace std;
int main() {
int a,b;
cin>>a>>b;
cout<<(a+b);
// write your code here......
return 0;
}
相关推荐