1
2
3
4
5
import sys

a = int(sys.stdin.readline())
b = int(sys.stdin.readline())
print(a + b)