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

PROGRAMMING:Input two numbers from the keyboard, find their sum and output

Luz5年前 (2021-05-10)题库442
This topic requires reading in 2 integers a and B, and then output their sum.
###Input format:
Give an addend in a line
Give an addend on another line
###Output format:
Output the sum value on one line.
###Input example:
Here is a set of inputs. For example:
```in
eighteen
-48
```
###Output example:
The corresponding output is given here. For example:
```out
-30
```







answer:If there is no answer, please comment
```
a=int(input())
b=int(input())
print(a+b)
```