#include <iostream>

using std::string;
int main() {
	string s = "hello world";
	std::cout << s;
	return 0;
}