public class J { public static void main(String[] args) { int a = 0, b = 1, c = 2; c ^= a & b; System.out.print(c); } }