inp = list(map(int,input().split()))
l = list(map(int,input().split())
inp = list(map(int,input().split()))
print("Enter the numbers: ")
inp = list(map(int, input().split()))
print(inp)
N, M = map(int, input().split())
print(N)
print(M)
_input = input() # Get input
_input = "thing1 thing2, thing3"
space_split = _input.split() # ["thing1", "thing2,", "thing3"]
comma_split = _input.split(",") # ["thing1 thing2", "thing3"]
dic = {}
for index, value in enumerate(input().split()):
dic[int(value)] = int(index)