#include	<iostream>
#include	<string>

int main()
{
	char	*p = "Hello";
	std::cout << p + " world" << std::endl;
	return 0;
}
