x = input()
y = []#创建y空列表
for i in x.split(' '):#取x里面的元素用空格分隔开
    y.append(int(i))#把i中的元素取为整数加到空列表y
print(y)