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