• Source
    1. contents = []
    2. while True :
    3. try:
    4. line = input()
    5. a = line.pop(0)
    6. b = line.pop(1)
    7. print(int(a)+int(b))
    8. except EOFError:
    9. break
    10.  
    11.