daut2021-po16/TaskX01/run.py
Jakub Pokrywka acdb640824 daut 1
2021-11-30 13:45:59 +01:00

8 lines
82 B
Python

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