#include<stdio.h>
#include<iostream>
#include<cstring>
using namespace std;
void getNext()
{
string s;
cin>>s;
int next[100];
next[0]=0;
for(int i=1;i<s.length();i++)
{
int j=next[i-1];
while(1)
{
if(s[j]==s[i])
{
//cout<<i<<" "<<j<<endl;
next[i]=j+1;
break;
}
else
{
if(j==0)
{
next[i]=0;
break;
}
else
{
j=next[j-1];
}
}
}
}
for(int i=0;i<s.length();i++)
{
cout<<next[i]<<" ";
}
}
int main()
{
getNext();
return 0;
}