def solve(): s = input() memo = 'yukicoder' for i, c in enumerate(s): if (memo[i] != c): print(memo[i]) break solve()