#include<iostream>
using namespace std;
#include<string>
int main()
{
int nl;
string str1, str2;
while (cin >> str1 >> str2)
{
nl = str1.length();
for (int i = 0; i < nl; i++)
{
if (str1[i] != str2[i]) cout << "1";
else cout << "0";
}
cout << endl;
str1.clear();
str2.clear();
}
return 0;
}