a,b = map(int,input().split())
n = a + b
#获取个位
g = n - int(n/10)*10
#获取十位
s = n - int(n/100)*100 -g
if n < 100:
    print(n)
else:
    print(s + g)