A+B for Input-Output Practice (VII)

简介:


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

 
Problem Description
Your task is to Calculate a + b.

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, and followed by a blank line.

Sample Input

1 5
10 20


Sample Output

6
 
30
-----------------------------------------------------

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

 

 




本文转自夏雪冬日博客园博客,原文链接:http://www.cnblogs.com/heyonggang/archive/2012/12/11/2813171.html,如需转载请自行联系原作者

目录
相关文章
A+B for Input-Output Practice
A+B for Input-Output Practice
HDOJ 1095 A+B for Input-Output Practice (VII)
HDOJ 1095 A+B for Input-Output Practice (VII)
79 0
HDOJ 1096 A+B for Input-Output Practice (VIII)
HDOJ 1096 A+B for Input-Output Practice (VIII)
78 0
HDOJ 1094 A+B for Input-Output Practice (VI)
HDOJ 1094 A+B for Input-Output Practice (VI)
87 0
HDOJ 1093 A+B for Input-Output Practice (V)
HDOJ 1093 A+B for Input-Output Practice (V)
74 0
HDOJ 1091 A+B for Input-Output Practice (III)
HDOJ 1091 A+B for Input-Output Practice (III)
80 0
HDOJ 1089 A+B for Input-Output Practice (I)
HDOJ 1089 A+B for Input-Output Practice (I)
91 0

热门文章

最新文章