s=input() l=len() for i in range(l-1): if s[i]=='a' and s[i+1]=='o': s[i]='k' s[i+1]='i' print(s)