输入两个数 a和b,输出a+b的和。
1 1
2
不要忘了输出\n
#include <iostream> using namespace std; int main() { int a,b; while(cin >> a >> b) { cout << a + b << endl; } }