#include <iostream>
using namespace std;
const char *strapp(const char *str, const char *s)
{
string ret="";
ret+=str;
ret+=s;
return ret.c_str();
}
//Note, there is a memory leak in this code
int main() {
	cout<<strapp("Hello ","World!")<<endl;
	return 0;
}