tw1068.pp 204 B

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