#include <iostream>
#include <string>

int main(){
	std::cout << (std::string)"hello";
	std::cout << static_cast<std::string>("world");
}