HDU-1000 A + B Problem

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了HDU-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
 

题解

  愉快的水题……
 
 

代码

1 #include <iostream>
2 using namespace std;
3 int a,b;
4 int main() {
5     while(cin >> a >> b)
6         cout << a+b << endl;
7     return 0;
8 }

 

以上是关于HDU-1000 A + B Problem的主要内容,如果未能解决你的问题,请参考以下文章

HDU 1000 A + B Problem

HDU-1000 A + B Problem

Hdu 1000 A + B Problem

hdu 1000 A + B Problem

[HDU1000] A + B Problem

HDU 1000 A + B Problem(指针版)