take space separated int input in python

34

take space separated int input in python -

inp = list(map(int,input().split()))

Comments

Submit
0 Comments