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"]
PQT =list(map(int, input().split()[:N]))
dic = {}
for index, value in enumerate(input().split()):
dic[int(value)] = int(index)
N = 5
num = [int(i) for i in input().split()][:N]
print(num)
# Output: [1, 2, 3, 4, 5]