#include <iostream>
#include <string>

int main() {
	std::string world = "world!";
	std::string hello_world = "Hello " + world;
	std::cout << hello_world << std::endl;
	return 0;
}