2017-12-24 1000: A + B Problem AOJ Hatebu Twitter Pocket 販売実績 問題ページ 解き方 整数A、Bを空白区切りで受け取り、足すだけ。 コード(python) while True: try: print(sum(map(int, input().split()))) except: break