S = input() L = list(S) for i in range(len(L)-1): if L[i] == 'a' and L[i+1] == 'o': L[i] = 'k' L[i+1] = 'i' S2 = "" for i in L: S2 += i print(S2)