fork download
  1. uses
  2. crt;
  3. var
  4. x:string;
  5. begin
  6. while not eof(input) do
  7. begin
  8. readln(x);
  9. writeln(x);
  10. end;
  11. end.
Success #stdin #stdout 0.01s 296KB
stdin
abc
123
stdout
abc
123