#include <bits/stdc++.h>
using namespace std;
int main()
{
    int n , t;
    cin >> n;
    
    while(n --)
    {
        cin >> t;
        int a[t];
        for( int i = 0 ; i < t ; i ++ )    cin >> a[i];
        
        for( int i = t - 1 ; i >= 0 ; i -- )
            cout << a[i] << ' ';
        cout << endl;
    }
    return 0;
}