#include <bits/stdc++.h> using namespace std; int main() { int t; cin>>t; while(t--) { string s,t; cin>>s>>t; cout<<!(s==t)<<endl; } }