6 lines
108 B
Text
6 lines
108 B
Text
open "input.txt" for reading as #1
|
|
while not eof(1)
|
|
line input #1 linea$
|
|
print linea$
|
|
wend
|
|
close #1
|