s = input() t = 'yukicoder' for i in range(len(s)): if s[i] != t[i]: print(t[i]) break