bit c++

#include <iostream>

int main() {
    int x = 5; // Declare and initialize x with the value 5
    int y = 3; // Declare and initialize y with the value 3
    int result = x & y; // Bitwise AND operation between x and y
    std::cout << "Result: " << result << std::endl; // Output the result
    return 0; // Return 0 to indicate successful completion
}