#include<bits/stdc++.h>
using namespace std;
int main() {
string s;
cin>>s;
int a[s.length()];
int k = 1;
for(int i=s.length()-1;i>=0;i--){
int place = s[i]-'0' - 1;
// cout<<place<<endl;
a[place] = k++;
}
for(int i=s.length()-1;i>=0;i--)cout<<a[i];
return 0;
}
this the code that you have provided me
sir i want to know where i am wrong in my code that i have provided you yestreday