// hello.cpp - Hello program in C++

#include <iostream>

int main() {
       std::cout << "Hello, World!" << endl;
}