9 lines
146 B
Text
9 lines
146 B
Text
|
|
import system'io;
|
||
|
|
|
||
|
|
public program()
|
||
|
|
{
|
||
|
|
var text := File.assign("input.txt").readContent();
|
||
|
|
|
||
|
|
File.assign("output.txt").saveContent(text);
|
||
|
|
}
|