program numberSize1 (input,output);
begin
write (' the biggest positive integer in this version of Pascal is: ');
writeln ( maxint);
write (' if I add 1 to it, this is what I get: ');
writeln ( maxint + 1);
end.