made it more modular

This commit is contained in:
Kristian Krsnik 2023-08-23 23:39:32 +02:00
parent 8018d9fe58
commit dbfba43657
1 changed files with 5 additions and 2 deletions

View File

@ -1,2 +1,5 @@
with open('./000-999/147/inputs/flag') as file:
print(file.read())
if __name__ == '__main__':
with open('./000-999/147/inputs/flag') as file:
input = file.read()
print(input)