// #define _GLIBCXX_DEBUG #include using namespace std; #define rep(i, n) for (int i = 0; i < (int)(n); ++i) int main() { // Input string A, S; cin >> A >> S; // Replace for (char& c : S) if ('0' <= c && c <= '9') c = A[c - '0']; // Output cout << S << endl; }