    #include <iostream>

    int main()
    {
        int x = 4;
        std::cout << (x ^ 2); // Prints 6
    }
