fork download
  1. var a: string;
  2. i, n: byte;
  3. begin
  4. read (a);
  5. n:=length (a);
  6. for i:=1 to n do
  7. writeln (a[i]);
  8. end.
Success #stdin #stdout 0s 288KB
stdin
12345
stdout
1
2
3
4
5