File tree Expand file tree Collapse file tree 1 file changed +15
-15
lines changed Expand file tree Collapse file tree 1 file changed +15
-15
lines changed Original file line number Diff line number Diff line change 11---
22layout : post
3- title : 1014.As Easy As A+B
3+ title : 1089. A+B for Input-Output Practice (I)
44date : 2014-10-02 19:42
55categories : 杭电HDU
66tags : [杭电HDU]
77---
88## Problem
9- ** Problem Description**
10- Your task is to Calculate a + b.
11- Too easy?! Of course! I specially designed the problem for acm beginners.
12- You must have found that some problems have the same titles with this one, yes, all these problems were designed for the same aim.
13- ** Input**
14- The input will consist of a series of pairs of integers a and b, separated by a space, one pair of integers per line.
15- ** Output**
16- 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.
17- ** Sample Input**
18- 1 5
19- 10 20
20- ** Sample Output**
21- 6
22- 30
9+ > ** Problem Description**
10+ Your task is to Calculate a + b.
11+ Too easy?! Of course! I specially designed the problem for acm beginners.
12+ You must have found that some problems have the same titles with this one, yes, all these problems were designed for the same aim.
13+ ** Input**
14+ The input will consist of a series of pairs of integers a and b, separated by a space, one pair of integers per line.
15+ ** Output**
16+ 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.
17+ ** Sample Input**
18+ 1 5
19+ 10 20
20+ ** Sample Output**
21+ 6
22+ 30
2323
2424## Solution
2525``` cpp
You can’t perform that action at this time.
0 commit comments