# Read the input string s = input().strip() # The target correct string target = "yukicoder" # Iterate over each character in the input string for i in range(len(s)): if s[i] == '?': # Output the corresponding character from the target string print(target[i]) break