考点:栈
#include<bits/stdc++.h>
using namespace std;
const int MAXSIZE=1001;
int main() {
int n;
while(cin>>n) {
stack<string> st,st2;
string s;
for(int i=0; i<n; i++) {
cin>>s;
st.push(s);
st2=st;
int cnt=0;
while(cnt<4&&!st2.empty()) {
cnt++;
cout<<cnt<<"="<<st2.top()<<" ";
st2.pop();
}
cout<<endl;
}
}
return 0;
}