tbug1068.pp 186 B

1234567891011121314
  1. PROGRAM bug1068;
  2. VAR i: INT64;
  3. s : string;
  4. BEGIN
  5. i:=2147483648;
  6. str(i,s);
  7. if s<>'2147483648' then
  8. begin
  9. writeln(s);
  10. halt(1);
  11. end
  12. else
  13. halt(0);
  14. END.