# -*- coding: utf-8 -*- S = input() origin = 'yukicoder' for i in range(len(S)): if S[i] == '?': print(origin[i]) break