A+B for Input-Output Practice (VII)

简介: http://acm.hdu.edu.cn/showproblem.php?pid=1095  Problem DescriptionYour task is to Calculate a + b.InputThe input will consist of a series of pairs o...


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 }

 

 

 

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

目录
相关文章
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)
86 0
HDOJ 1096 A+B for Input-Output Practice (VIII)
HDOJ 1096 A+B for Input-Output Practice (VIII)
85 0
HDOJ 1094 A+B for Input-Output Practice (VI)
HDOJ 1094 A+B for Input-Output Practice (VI)
95 0
HDOJ 1092 A+B for Input-Output Practice (IV)
HDOJ 1092 A+B for Input-Output Practice (IV)
102 0
HDOJ 1090 A+B for Input-Output Practice (II)
HDOJ 1090 A+B for Input-Output Practice (II)
78 0
|
关系型数据库 MySQL 数据库管理