#32273: python input


python123 (test.py)


n = int(input())
a = []
while len(a) < n:
num = [int(i) for i in input().strip().split()]
for i in num:
a.append(i)
#34691: Re: python input


s11104220@school.saihs.edu.tw (施同學)


n = int(input())
a = []
while len(a) < n:
num = [int(i) for i in input().strip().split()]
for i in num:
a.append(i)

 

n=int(input())
s=[]
while len(s)!=n:
    s.extend(list(map(int,input().split())))