NetBSD/share/doc/ps1/04.pascal/kat.p

14 lines
179 B
OpenEdge ABL
Raw Normal View History

1993-03-21 12:45:37 +03:00
program kat(input, output);
var
ch: char;
begin
while not eof do begin
while not eoln do begin
read(ch);
write(ch)
end;
readln;
writeln
end
end { kat }.