Added path to open

This commit is contained in:
2022-12-01 18:42:06 +02:00
parent 26a96c4f29
commit 5d7e7c6cdc

View File

@@ -1,4 +1,6 @@
f = open("input.txt", "r")
import os
f = open(os.path.dirname(__file__)+"/input.txt", "r")
elves = []