#include <bits/stdc++.h>
using namespace std;
#define endl '\n'
#define ll long long int
#define lld long long double
#define ull unsigned long long
void solve(){
ll a, b, c;
cin >> a >> b >> c;
vector <ll> lst = {a,b,c};
sort(lst.begin(), lst.end());
if (a == b && b == c){
cout << 0 << endl;
}
else if (lst[0] == lst[1] || lst[1] == lst[2]){
cout << 1 << endl;
}
else if (lst[0] != lst[1] && lst[1] != lst[2] ){
cout << 2 << endl;
}
}
int main(){
ios_base::sync_with_stdio(false);
cin.tie(0);
int t;
cin >> t;
while(t--){
solve();
}
}