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