SqStack s;int n, i;char c;InitStack(s);cin >> n;for(i=0;i<n;i++){ cin >> c;Push(s,c);} for(i=0;i<n;i++){ Pop(s,c);cout << c << " ";} return 0;}