djfz-2023-s464933/TaskX01/run.py

8 lines
82 B
Python
Raw Permalink Normal View History

2023-11-19 22:42:11 +01:00
import sys
count = 0
for line in sys.stdin:
count += int(line)
print(count)