1
2
3
4
5
6
import sys

a = int(sys.stdin.readline().strip())
b = int(sys.stdin.readline().strip())

print(a+b)