cout console

#include <iostream>

int main() {
    // Declare a variable of type int named 'number' and initialize it with the value 42
    int number = 42;

    // Output the value of the variable 'number' to the console
    std::cout << "The value of number is: " << number << std::endl;

    // Return 0 to indicate successful execution of the program
    return 0;
}