What combination of values for integer variables a and b cau…

What combination of values for integer variables a and b cause the following code block to print “Branch 2”? if (a < 10 && b < 10) {    System.out.print("Branch 1");} else if ((a < 10 && b > 25) || (a > 25 && b < 10)) {    System.out.println("Branch 2");} else if (a > 25 && b > 25) {    System.out.println(“Branch 3”);}