var
s:string;
begin
AllocConsole;
try
Write('Type here your words and press Enter');
Readln(s);
ShowMessage(Format('You typed: "%s"',[s]));
finally
FreeConsole;
end;