djfz-2023-s464986/TaskX01/run.py

8 lines
82 B
Python
Raw Normal View History

2023-10-15 16:22:40 +02:00
import sys
count = 0
for line in sys.stdin:
count += int(line)
print(count)