#include
using namespace std;
int main() {
int n;
cin>>n;
while(n--)
{
long long int a,b;
cin>>a>>b;
cout<<(a^b)<<"\n";
}
return 0;
}
The answer should come as 00111 for the sample test case, but I am getting the answer as only 111. How do I get to print the leading zeroes?