7 lines
112 B
Python
7 lines
112 B
Python
import os
|
|
|
|
with open('advent_of_code_2023\day_3\input.txt', 'r') as file:
|
|
input = file.read()
|
|
|
|
print(input)
|