djfz-2021/TaskX01/run.py

8 lines
82 B
Python
Raw Normal View History

2021-10-10 19:40:24 +02:00
import sys
count = 0
for line in sys.stdin:
count += int(line)
print(count)