Skip to main content
replaced http://codegolf.stackexchange.com/ with https://codegolf.stackexchange.com/
Source Link

Python 3, 28 bytes

print(sum(map(int,open(0)))) 

Taken from this tipthis tip. I've been told this won't work on Windows.

Try it online!

Python 3, 28 bytes

print(sum(map(int,open(0)))) 

Taken from this tip. I've been told this won't work on Windows.

Try it online!

Python 3, 28 bytes

print(sum(map(int,open(0)))) 

Taken from this tip. I've been told this won't work on Windows.

Try it online!

Source Link
Dennis
  • 211.7k
  • 41
  • 380
  • 830

Python 3, 28 bytes

print(sum(map(int,open(0)))) 

Taken from this tip. I've been told this won't work on Windows.

Try it online!