这些题目用python好像就失去了它原本想考核的知识点了。

while True:
    try:
        A = int(input())
        B = int(input())
        print(A+B)
    except:
        break