A + B Problem
问题比较简单,但是题目要求‘ Process to end of file’。所以说我们要加入一个循环。
#include <iostream>
#include <string>
#include <algorithm>
using namespace std;
int main()
{
int A, B;
while (cin >> A >> B)//加入这个循环满足题目“ Process to end of file”条件
{
cout << A + B << endl;
}
return 0;
}