803de69aaa
added 2022 folders to start going back and doing previous years
7 lines
114 B
Python
7 lines
114 B
Python
import os
|
|
|
|
with open(r'advent_of_code\2022\day_13\input.txt', 'r') as file:
|
|
input = file.read()
|
|
|
|
print(input)
|