7 lines
140 B
Text
7 lines
140 B
Text
|
|
integer fn = open("input.txt","rb")
|
||
|
|
string txt = get_text(fn)
|
||
|
|
close(fn)
|
||
|
|
fn = open("output.txt","wb")
|
||
|
|
puts(fn,txt)
|
||
|
|
close(fn)
|