#include <iostream>
#include <string>

int main() {
	std::string str = "hello " + "world";
	std::cout << str;
}