main = getLine >>= putStrLn . f . zip "yukicoder" where f ((y, c):cs) | c == '?' = [y] | otherwise = f cs