y = gets.chomp u = "yukicoder" idx = 0 y.each_char do |k| puts u[idx] if k != u[idx] idx += 1 end