t,n=map(int,input().split()) d={} for tcase in range(t): a=input().split() d[a[0]]=a[1] for tcase in range(n): a=input() print(d[a],end=" ") print( )