cpp boilerplate

// Step 1: Include necessary header files
#include <iostream>

// Step 2: Use the standard namespace for input/output operations
using namespace std;

// Step 3: Define the main function, the entry point of the program
int main() {
    // Step 4: Print a message to the console
    cout << "Hello, World!" << endl;

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