# 2つの整数を入力として受け取る a, b = map(int, input().split()) # 足し算をして結果を出力 print(a + b)