1000 A + B Problem

发布时间: 更新时间: 总字数:59 阅读时间:1m 作者: 分享 复制网址
专栏文章
  1. 1000 A + B Problem(当前)
  2. 1001 Sum Problem
  3. 1002 A + B Problem II
  4. 1003 Max Sum
  5. 1004 Let the Balloon Rise
  6. Presentation Error
  7. Who Won The Duel?
  8. 让气球升起来
  9. 1005  Number Sequence
  10. A == B ?

1000 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

#include
using namespace std;

int main()
{
    int a,b;
    while(cin>>a>>b)
        cout<<a+b<<endl;
    return 0;
}
Home Archives Categories Tags Statistics
本文总阅读量 次 本站总访问量 次 本站总访客数