n = input().split(" ")
m = []
for i in n:
    m.append(int(i))
print(m)