6 lines
No EOL
91 B
Python
6 lines
No EOL
91 B
Python
import sys
|
|
|
|
with open("./input", "r") as file:
|
|
strings = file.read().split("\n")
|
|
|
|
x = 0 |