What will be the output of the following program?
public class Cricket {
static boolean ball;
public static void main(String[] args) {
short bat = 42;
if (bat < 50 & !ball)
bat++;
if (bat > 50)
;
else if (bat > 40) {
bat += 7;
bat++;
}
else
--bat;
System.out.println(bat);
}
}