2015 day 15

This commit is contained in:
2026-06-05 11:05:24 +02:00
parent 2890aac81e
commit ac0b8697bb
2 changed files with 109 additions and 3 deletions
+4 -3
View File
@@ -14,12 +14,13 @@ import fileinput
def main(inp):
for l in inp:
print(l)
for line in inp:
print(line)
if __name__ == '__main__':
lines = [x.rstrip() for x in fileinput.input()]
with fileinput.input() as f:
lines = [x.rstrip() for x in fileinput.input()]
main(lines)
"""