def input_list(): return list(map(int, input().split())) def output_list(alist): for i in alist: print(i, end=" ") a = input_list() output_list(a)