How can I accept multiple user inputs separated by a space? I don\'t know the number of inputs, but I do know they are all ints.
Here\'s some example inputs:
x,y=map(int,input().split()) #this will take input separated by space and map #into int
x,y=map(int,input().split())