#include<iostream>
#include<string>
using namespace std;
int main(){
	string str1, str2;
	while (cin >> str1 >> str2){
		string ans;
		for (int i = 0; i < str1.size(); i++){
			ans.insert(ans.size(), 1, str1[i]);
			ans.insert(ans.size(), 1, str2[str2.size()-1-i]);
		}
		cout << ans << endl;
	}
}