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