#include <bits/stdc++.h>
using namespace std;
#define int long long
#define yes cout << "Yes" << endl
#define no cout << "No" << endl
#define neg cout << -1 << endl
#define pb push_back
#define ss second
#define ff first
const int mod = 1e9 + 7;
const int N = 2e5 + 5;
const int INF = 1e18;
int md = 998244353;
void solve()
{
int n = 3;
vector<int> a(n);
for(int i = 0; i < n; i++) cin >> a[i];
sort(a.begin(), a.end());
int f = a[1] - a[0], s = a[2] - a[1];
int ab = gcd(f, s);
if(ab==0)
{
cout<<0<<endl;
return;
}
int cnt = (f / ab) + (s / ab);
cout << cnt << endl;
}
signed main()
{
ios_base::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
int test = 1;
cin >> test;
for (int tc = 0; tc < test; tc++)
{
solve();
}
return 0;
}