A + B Problem
Problem Description
Calculate A + B.
Input
Each line will contain two integers A and B. Process to end of file.
Output
For each case, output A + B in one line.
Sample Input
1 1
Sample Output
2
code:
Calculate A + B.
Input
Each line will contain two integers A and B. Process to end of file.
Output
For each case, output A + B in one line.
Sample Input
1 1
Sample Output
2
code:
#include<iostream>
using namespace std;
int main()
{
int a,b,sum;
while(cin>>a>>b)
cout<<a+b<<endl;
return 0;
}
本文提供了解决基本数学问题A+B的方法,包括输入格式、输出要求及详细代码实现步骤。通过实例演示如何高效处理此类计算任务。
1432

被折叠的 条评论
为什么被折叠?



