Python 一行解法

while True:
    try:
        str_1, str_2 = input(),input()
        print(int(str_1)+int(str_2))
    except:
        break