This repository has been archived on 2024-08-23. You can view files and clone it, but cannot push or open issues or pull requests.
Files
lessons/Python/Python-test/task5.py
2023-07-16 13:23:25 +00:00

5 lines
85 B
Python

with open("task5.txt") as f:
nums = map(int, f.read().split())
print(sum(nums))