5 lines
77 B
Python
5 lines
77 B
Python
|
file = open("input.txt", "r")
|
||
|
for line in file:
|
||
|
print(line)
|
||
|
file.close()
|