program numberSize2 (input,output);

 

 

var  big    : integer;

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);

    writeln (' but if I add 1 to it and store it in an integer I get :');  

    big := maxint +1;

    writeln (' big is: ', big);

end.