#include #include int main() { std::string msg = "Hello World!"; std::string input; std::cin >> input; std::cout << msg << std::endl; return 0; }