bug0115.pp 89 B

12345678910
  1. var
  2. c : comp;
  3. begin
  4. c:=1234;
  5. writeln(c);
  6. readln(c);
  7. writeln(c);
  8. end.