Language:
Русский
English
{Str.PAS}
▀▀▀▀▀▀▀▀▀▀▀
{Sample code for the Str procedure.}
function IntToStr(I: Longint): String;
{ Convert any integer type to a string }
var
S: string[11];
begin
Str(I, S);
IntToStr := S;
end;
begin
Writeln(IntToStr(-5322));
end.