package basic; public class Problem111 { public static void main(String[] args) { // System.out.println(2<3 && 3 == 2 != 2); error System.out.println(true | 3 - 5 < -2 | false); //System.out.println(2 == 2 && true ^ false != false); //System.out.println(false | 2 < 3 == (3 != 2) ^ false); } }