import sys

numList = input().split(' ')
numList = [int(i) for i in numList]
print(numList)