a=input() b=[] for i in a.split(" "): b.append(int(i)) print(b) print([int(i) for i in input().split(" ")]) print(list(map(int,input().split(" "))))