#include<bits/stdc++.h> using namespace std; int main() { string a,b; cin>>a>>b; for(int i=0;i<strlen(a);i++){ cout<<a[i]+b[i]-'0'; } return 0; }