Files
advent_of_code/day_13/solution.py
T
2023-11-30 15:02:20 +00:00

7 lines
113 B
Python

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