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(''.join(s))