#36581: a002 Python程式


ccn1123.social@gmail.com (Chien Zhang)


text_list = input().split(' ')          # 文字使用空白拆分成串列
nums = [int(i) for i in text_list]  # 使用串列生成式,將文字串列轉換成數字串列
result = sum(nums)                  # 使用 sum 的方法將數字串列的所有數字相加
print(result)                              # 印出結果