Input space seperated integers   



Get a list of space seperated  integers.And also print the list given.


Code:

a=list(map(int,input().split()))
print(a)

Comments

Popular posts from this blog