from sys import stdin def main(): input = lambda: stdin.readline()[:-1] S = input() print(S.replace('ao', 'ki')) main()