inputV= input().split() print(type(inputV)) print(inputV)
inputV = map( int, input().split() ) print(type(inputV)) print(inputV)