8 lines
135 B
Python
8 lines
135 B
Python
testing = True
|
|
if not testing:
|
|
with open(r"2025/05/input.txt", "r") as file:
|
|
input = file.read()
|
|
else:
|
|
input = '''
|
|
'''
|