#include <iostream>

int main() {
    // Prints "Hello, World!" to the console
    std::cout << "Hello, World!" << std::endl;
    
    return 0;
}
