can you add a bool and an int

#include <iostream>

int main() {
    bool myBool = true;  // Step 1: Declare a boolean variable named "myBool" and initialize it with the value "true".
    int myInt = 42;      // Step 2: Declare an integer variable named "myInt" and initialize it with the value "42".

    // Step 3: Print the values of the boolean and integer variables.
    std::cout << "Boolean Value: " << myBool << std::endl;
    std::cout << "Integer Value: " << myInt << std::endl;

    return 0;
}