#include<bits/stdc++.h>
using namespace std;
#define ll long long
#define pb push_back
#define yes cout<<"YES"<<endl
#define no cout<<"NO"<<endl
#define all(x) (x).begin(), (x).end()
#define gcd(a,b) __gcd(a,b)
#define lcm(a,b) (a*b)/__gcd(a,b)
#define optimize() ios_base::sync_with_stdio(0);cin.tie(0);cout.tie(0);
void solve(){
vector<ll>v(3);
map<ll,ll>mp;
for(ll i=0; i<3; i++){
cin>>v[i];
mp[v[i]]++;
}
sort(all(v));
if(mp[v[0]]==3) cout<<0<<endl;
else{
cout<<1<<endl;
}
}
int main()
{
optimize();
ll t=1;
cin>>t;
while(t--) solve();
}