8 lines
82 B
Python
8 lines
82 B
Python
import sys
|
|
|
|
count = 0
|
|
for line in sys.stdin:
|
|
count += int(line)
|
|
|
|
print(count)
|