#列表推导式:输入的字符以空格隔开,再转为int
num=[int(i) for i in input().split()]
print(f'{num[0]+num[1]}')