5 lines
85 B
Python
5 lines
85 B
Python
with open("task5.txt") as f:
|
|
nums = map(int, f.read().split())
|
|
|
|
print(sum(nums))
|