1
2
3
4
5
def solve():
	a = int(input())
	b = int(input())
	print(a + b)
solve()