1 public class BitNotCond {2 3 public static void main(String [] args){4 5 int x = 9;6 int y = 10;7 8 boolean b = !(x > y);9 10 int b2 = ~x;11 }12 }13