import sys

a = input()
b = a.split(" ")
j=0
for i in b:
    i = int(i)
    b[j] = i
    j +=1
print(b)
#你就说好不好理解把!