S = list(input()) for i in range(6): if S[i] == 'a' and S[i+1] == 'o': S[i] = 'k' S[i+1] = 'i' print(*S,sep='')