class MainClass{ public static void main(String[] args) { int n = 7; n <<= 3; n = n & n + 1 | n + 2 ^ n + 3; n >>= 2; System.out.println(n); } }