inp = list(map(int,input().split()))
# case1: suppose you need to get two integers
i1, i2 = map(int, input().split())
# case2: want a list?
lst = map(int, input().split())
PQT =list(map(int, input().split()[:N]))
N = 5
num = [int(i) for i in input().split()][:N]
print(num)
# Output: [1, 2, 3, 4, 5]