#include <iostream>
#include <vector>
using namespace std;
int main() {
ios_base::sync_with_stdio(false);
cout.tie(NULL);
cin.tie(NULL);
string str;
cin >> str;
vector<int>a;
for (int i = 97; i <= 122; i++) {
for (int j = 0; j < str.size(); j++) {
int k = str.at(j);
if (k == i) {
a.push_back(j);
break;
}
if (j == str.size() - 1) {
a.push_back(-1);
}
}
}
for (int i = 0; i < 122 - 97 + 1; i++) {
cout << a[i] << " ";
}
}