S = list(input()) for i in range(len(S) - 1): if S[i : i + 2] == list("ao"): S[i] = "k" S[i + 1] = "i" print(*S, sep="")