#include <iostream>
#include <sstream>
#include <string>

using namespace std;

int main() {
    stringstream ss;
    string hello("hello");
    int world = 1234;
    ss << hello << world << endl;
    string res = ss.str();
    cout << res << endl;
    return 0;
}