Start: Jul, 06, 2019 10:00:00
20190706Python程序设计基础培训扩展练习
End: Jul, 17, 2019 12:00:00
Time elapsed:
Time remaining:

Problem_ID: E
Result: Accepted
Time: 79ms
Memory: 25184kB
Author: 13758494551
In contest: 1300

t,n=map(int,input().split())
zd={}
s1=[]
for i in range(t):
    s=list(input().split())
    zd[int(s[0])]=s[1]
for i in range(n):
    x=int(input())
    s1.append(zd[x])
y=" ".join(s1)
print(y)