Files
advent_of_code/2022/05/part 2 solution.py
T
2023-12-17 17:44:07 +00:00

7 lines
110 B
Python

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