Files
advent_of_code/2023/day_22/part 1 solution.py
T
2023-12-02 15:26:52 +00:00

7 lines
114 B
Python

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