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