#include <bits/stdc++.h>
using namespace std;
int main() {
ios_base::sync_with_stdio(0);
cin.tie(0);
int n;
cin>>n;
vector<pair<int,pair<int,pair<string,string>>>>a(n);
for(int i=0;i<n;i++){
cin>>a[i].second.second.first>>a[i].first>>a[i].second.first>>a[i].second.second.second;
}
sort(a.begin(),a.end());
for(auto z:a){
cout<<z.first<<' '<<z.second.first<<' '<<z.second.second.first<<'\n'<<z.second.second.second<<'\n';
}
}
內建的sort真的很好用