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