Files
advent_of_code/2023/day_13/part 2 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_13\input.txt', 'r') as file:
input = file.read()
print(input)