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

var
  s: ansistring;

begin
  readln(s);
  s := delspace1(' ' + s + ' ');
  writeln(copy(s, 2, length(s) - 2))
end.