#include<bits/stdc++.h>
using namespace std;
using ll = long long;
using pii = pair<int,int>;
const int N = 1e6+10;
int t,n,m,k,l,r,op,x,y;
string str;
void solve(){
cin>>t;
while(t--){
cin>>str;
n = str.size();
for(int i = 0;i<n;i++){
if(isdigit(str[i])){
cout<<(i+1)<<" ";
}
}
cout<<"\n";
}
}
int main(){
ios::sync_with_stdio(false);
cin.tie(nullptr);
cout.tie(nullptr);
solve();
return 0;
}