# frozen_string_literal: true # 入力された値を受け取る A = gets.chomp S = gets.chomp S.length.times do |i| S[i] = A[S[i].to_i] unless S[i].match(/\d/).nil? end puts S