4 lines
77 B
Python
4 lines
77 B
Python
|
import sys
|
||
|
|
||
|
print(sum(int(line.rstrip()) for line in sys.stdin.readlines()))
|