1 2 3 4 5 6 7 8 9 10 11
class Branch { public static void main(String[] a) { boolean b ; b = false ; if (b) System.out.println(1) ; else System.out.println(2) ; } }