s=input() a=input() for i in range(len(a)): if a[i].isdecimal()==True: n=int(a[i]) a=a.replace(str(n),s[n]) print(a)