7 lines
114 B
Python
7 lines
114 B
Python
import os
|
|
|
|
with open(r'advent_of_code\2023\day_23\input.txt', 'r') as file:
|
|
input = file.read()
|
|
|
|
print(input)
|