djfz-2023-s464986/TaskX01/run.py

8 lines
82 B
Python

import sys
count = 0
for line in sys.stdin:
count += int(line)
print(count)