s = input() l = 'yukicoder' for i in l: if not i in s: print(i) break