https://open.kattis.com/problems/hello
Hello is a very simple problem. It's usually the first program that someone implements when learning how to program, simply print out `Hello World!".
This can be done in various ways. In c++, one of the popular ways is:
cout << "Hello World!";