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