#include #include using namespace std; int main() { string s = "hello"; string t = "HHH"; s.insert(1, t); cout << s << endl; return 0; }