#include
#include
using namespace std;
int main(){
string str1,str2;
int t;
cin>>t;
cin>>str1>>str2;
while(t--){
int i=0;
int j=0;
while(i<str1.length() and j<str2.length()){
if(str1[i]!=str2[j]){
cout<<1;
}
else{
cout<<0;
}
i++;
j++;
}
}
}