Skip to content

Commit e8924d0

Browse files
author
lanyuan
committed
2017.2.27
1 parent 7168ddc commit e8924d0

File tree

1 file changed

+15
-15
lines changed

1 file changed

+15
-15
lines changed

_posts/2014-09-17-a-b-input-output.md

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,25 @@
11
---
22
layout: post
3-
title: 1014.As Easy As A+B
3+
title: 1089.A+B for Input-Output Practice (I)
44
date: 2014-10-02 19:42
55
categories: 杭电HDU
66
tags: [杭电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

0 commit comments

Comments
 (0)