about summary refs log tree commit diff
path: root/others/volume1/095.pas
diff options
context:
space:
mode:
Diffstat (limited to 'others/volume1/095.pas')
-rw-r--r--others/volume1/095.pas11
1 files changed, 11 insertions, 0 deletions
diff --git a/others/volume1/095.pas b/others/volume1/095.pas
new file mode 100644
index 0000000..56300d1
--- /dev/null
+++ b/others/volume1/095.pas
@@ -0,0 +1,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.