Fill the blank so that weight is tested in two ways:
weight
must be equal or greater than 136weight
must be less than or equal to 147
// check that the weight is within range
if ( weight >= 136 && weight <= 147 )
System.out.println("In range!" );
else
System.out.println("Out of range." );
Our boxer must be heavy enough