PROGRAM MaxintExample (input, output); BEGIN writeln('The largest integer is maxint = ', maxint); writeln('The smallest integer is -maxint = ', -maxint); END. { Expected Results The largest integer is maxint = 32767 The smallest integer is -maxint = -32767 }