#include using namespace std; int main(){ ios_base::sync_with_stdio(false); cin.tie(nullptr); int T; cin >> T; while(T--){ vector A(5); for(auto &a : A) cin >> a; sort(A.begin(),A.end()); cout << A.back()-A.at(0) << "\n"; } }