题解 | #两数求和#
两数求和
http://www.nowcoder.com/practice/f1b704af4f654be285552bea53ce6534
这道题有够初级吧,解题思路就不讲了,太水了
#include <iostream>//这里也可以用万能库(#include<bits/stdc++.h>)
using namespace std;
int a,b;//也可以不用全局变量
int main()
{
cin>>a>>b;//读入
cout<<a+b;//输出
return 0;
}