-->
当前位置:首页 > 题库

PROGRAMMING:A + B input output exercise (III)

Luz5年前 (2021-05-10)题库557
Do I know what we need to do with this topic without saying it? Of course, the topic is a + B.
###Input format:
There are several groups of input data. We sum two integers respectively. When a and B are both 0, it is considered that the program ends, and the value of 0 + 0 is not output.
###Output format:
For each set of integers a and B, output the sum of the two.
Each output occupies one line.
###Input example:
Here is a set of inputs. For example:
```in
1 5
10 20
0 0
```
###Output example:
The corresponding output is given here. For example:
```out
six
thirty
```







answer:If there is no answer, please comment