import sys
n, m = map(int, sys.stdin.readline().split())
n_dict = dict()
for i in range(n):
name = sys.stdin.readline().rstrip()
n_dict[i+1] = name
n_dict2 = { v:k for k,v in n_dict.items()}
for i in range(m):
qes = sys.stdin.readline().rstrip()
if qes.isnumeric():
print(n_dict[int(qes)])
else :
print(n_dict2[qes])
'백준' 카테고리의 다른 글
백준 2164번: 카드 2 (파이썬) (0) | 2023.07.29 |
---|---|
백준 1764번: 듣보잡 (파이썬) (0) | 2023.07.29 |
백준 1269번: 대칭 차집합 (파이썬) (0) | 2023.07.29 |
백준 20115번: 에너지 드링크 (파이썬, 자바) (0) | 2023.07.29 |
백준 14425번: 문자열 집합 (파이썬) (0) | 2023.07.29 |