#include
#include
using namespace std;
int main()
{
int t;
cin>>t;
string str1;
string str2;
while(t–)
{
cin>>str1>>str2;
int l;
l=str2.length();
for(int j=0;j<l;j++)
{
if((str1[j]=str2[j]))
cout<<0;
else
cout<<1;
}
}
}
in this question one test case is passed but another is not why…
what problem is arrise in my code