mirror of
https://github.com/cupcakearmy/advent-of-code.git
synced 2024-10-31 23:54:11 +01:00
7 lines
101 B
Python
7 lines
101 B
Python
|
|
|
|
# 1
|
|
with open('./input.txt', 'r') as f:
|
|
for line in f.readlines():
|
|
print(line.strip())
|