' Ringside Weigh-in ' PRINT "Enter the weight:" INPUT WEIGHT IF WEIGHT >= 136 AND WEIGHT <= 147 THEN PRINT "Weight is OK" ELSE PRINT "Weight is not OK" END IF ' END
The boxer must be heavy enough ( WEIGHT >= 136
), and at the same time not too
heavy (WEIGHT <= 147
).
The results of the two tests are combined with an AND.
What will the monitor screen look like when the boxer's weight is 140?