Problem C: 求两个整数的和2(一行输入一个数方法)

Problem C: 求两个整数的和2(一行输入一个数方法)

[Creator : ]
Time Limit : 1.000 sec  Memory Limit : 128 MB

Description

输入2个1000000以内的正整数a和b,每行一个,输出它们的和。

a =int(input())
b =int(input())
print(a+b)

Input

3
5

Output

8

Sample Input Copy

6
4

Sample Output Copy

10