Files
advent_of_code/day_6/part 1 solution.py
T
2023-12-01 09:10:51 +00:00

7 lines
112 B
Python

import os
with open('advent_of_code_2023\day_6\input.txt', 'r') as file:
input = file.read()
print(input)