1
2
3
4
5
6
7
a = input()
b = input()

def sum(a, b):
    return a + b

print(sum(int(a), int(b)))