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