#include
using namespace std;
int main(){
ios_base::sync_with_stdio(false);
std::cin.tie(0);
int n,i;
while(cin>>n){
int h[n],t=0;
for(i=1;i<=n;i++){
cin>>h[i];
}
for(i=1;i<=n;i++){
for(int j=i;j>=1;j--){
if(h[j]<h[i]){
t=j;
break;
}
}
cout<<t<<" ";
t=0;
}
}
}