10 lines
126 B
Python
Raw Permalink Normal View History

2018-12-13 19:09:30 +01:00
#!/usr/bin/env python
start = 0
with open('input.txt', 'r') as f:
for line in f:
start += int(line)
print(start)