[ create a new paste ] login | about

Link: http://codepad.org/2pxlQ9b9    [ raw code | output | fork ]

Python, pasted on Oct 16:
1
2
3
s = list(map(int,input().split()))

print(sum(s))


Output:
1
2
3
4
Traceback (most recent call last):
  Line 1, in <module>
    s = list(map(int,input().split()))
EOFError


Create a new paste based on this one


Comments: