View Code of Problem 113

while 1:
    s=input().split()
    s=list(map(int,s))
    print(sum(s))
    print('\n')

Double click to view unformatted code.


Back to problem 113