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

PROGRAMMING:Simple addition

Luz5年前 (2021-05-10)题库638
This problem requires reading in two positive integers a and B, and then just output their sum. The only difference is that the size of these two numbers may be 100 million
###Input format:
First, input a positive integer n, and in the following N lines, input two positive integers a and B for each line, with unlimited size.
###Output format:
For each set of inputs, output the value of a + B in each row.
###Input example:
```in
three
256 244
200000 200000
11111111111111 11111111111111
```
###Output example:
```out
five hundred
four hundred thousand
twenty-two trillion and two hundred and twenty-two billion two hundred and twenty-two million two hundred and twenty-two thousand two hundred and twenty-two
```







answer:If there is no answer, please comment