How can I solve the problem?
Simple Input problem
Hey @developerkushal, take input using this lines
allnumbers = input().split()
numbers = [int(ix) for ix in allnumbers]
Now numbers list will contain all numbers from input console.
Happy Learning
1 Like