S = input() y = 'yukicoder' i = 0 for x in S: if x != y[i]: print(y[i]) break i += 1