Run ID:118757
提交时间:2025-05-10 11:58:24
#include<bits/stdc++.h> using namespace std; int main(){ char x[55],l[55]; int b=0,m=0; gets(x); gets(l); b=strlen(x); for(int i=0;i<b;i++){ if(x[i]==l[i]){ cout<<"1"; } else cout<<"0"; } return 0; }