9 lines
137 B
Text
9 lines
137 B
Text
inf = file.open( "input.txt", "r" )
|
|
|
|
line = inf.readLine
|
|
while not inf.atEnd
|
|
print line
|
|
line = inf.readLine
|
|
end while
|
|
|
|
inf.close
|