s = list(input()) for i in range(0, len(s)-1): if s[i] == 'a': if s[i+1] == 'o': s[i] = 'k' s[i+1] = 'i' for i in s: print(i, end='') print()