#include using namespace std; int main(){ int N; cin >> N; while(N--){ int K; cin >> K; vector L(K); for(auto &x : L) cin >> x; sort(L.begin(), L.end(), greater()); for(auto x : L) cout << x << ' '; cout << endl; } }