6 lines
123 B
ObjectPascal
6 lines
123 B
ObjectPascal
uses System.IO;
|
|
|
|
begin
|
|
FileInfo.Create('input.txt').Length.Println;
|
|
FileInfo.Create('/input.txt').Length.Println;
|
|
end.
|