python how to input on one of the top line of numbers code example
Example: input two numbers in python in a single line
inputs = []for i in range(3): # loop 3 times inputs.append(input())
inputs = []for i in range(3): # loop 3 times inputs.append(input())