tw14841.pp 107 B

123456789101112
  1. {$r+,o+}
  2. var
  3. b: byte;
  4. s: shortint;
  5. begin
  6. b:=57;
  7. s:=-1;
  8. inc(b, s);
  9. if b<>56 then
  10. halt(1);
  11. end.