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