c++ print out workds

#include <iostream>

int main() {
    // Declare a string variable named "words" and initialize it with a sentence.
    std::string words = "Hello, C++ programming is interesting.";

    // Print the contents of the "words" string to the console.
    std::cout << words << std::endl;

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