A+B for Input-Output Practice (I)

http://acm.hdu.edu.cn/showproblem.php?pid=1089

Problem Description
Your task is to Calculate a + b.
Too easy?! Of course! I specially designed the problem for acm beginners.
You must have found that some problems have the same titles with this one, yes, all these problems were designed for the same aim.

Input
The input will consist of a series of pairs of integers a and b, separated by a space, one pair of integers per line.

Output
For each pair of input integers a and b you should output the sum of a and b in one line, and with one line of output for each line in input.

Sample Input

1 5
10 20


Sample Output

6

30

-----------------------------------------------------

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

 

A+B for Input-Output Practice (I)
微信公众号: 猿人谷
如果您认为阅读这篇博客让您有些收获,不妨点击一下右下角的【推荐】
如果您希望与我交流互动,欢迎关注微信公众号
本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接。

上一篇:Kubernetes 弹性伸缩全场景解析 (一)- 概念延伸与组件布局


下一篇:软件开发必修课:你该知道的GRASP职责分配模式