using namespace std; int main() { int a, b; //定义两个整数 while (cin >> a >> b) //获取两个整数 cout << (a + b) << endl; //输出两个整数的和 return 0; }