# 使用split()方法将其按照空白字符分割成多个字符串,接着使用map()函数将这些字符串分别转换为整数类型
a, b = map(int, input().split()) 

print(a + b)