# numList = [ int(a) for a in input().split()] numList = list(map(int,input().split())) print(numList)