def ADD(x, y):
    sum = x+y
    return sum
a,b =map(int, input().split(' '))
x = ADD(a,b)
print(x)