//
s.insert( size_t pos,string s1 ); // 将 s1 插在 s[pos] 之前.
// is "" , not '' !!!
// eg.
#include<bits/stdc++.h>
using namespace std;
int main()
{
string s,s1;
while( getline( cin,s ) )
{
getline( cin,s1 );
s.insert( 1,s1 );
cout<<s<<endl;
}
return 0;
}
// abc
// 123
// a123bc