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