public class BitwiseExample { public static void main(String[] args) { int a = 5; // باینری: 0101 int b = 3; // باینری: 0011 System.out.println(a & b); // خروجی: 1 } }