about summary refs log tree commit diff
path: root/others/volume1/095.pas
blob: 56300d1418573b47115eac1c6a78e3e859b6a73d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
uses strutils;

var
  s: ansistring;
  i: int32;

begin
  readln(s);
  s := ' ' + delspace1(s) + ' ';
  write(replacetext(copy(s, 2, length(s) - 1), ' ', chr(10)))
end.