Files
advent_of_code/2022/5/part 2 solution.py
T
2023-12-17 17:37:01 +00:00

7 lines
109 B
Python

import os
with open(r'advent_of_code\2022\5\input.txt', 'r') as file:
input = file.read()
print(input)