how to get input two integers in one line in python 3 with space between them code example
Example 1: take two numbers as inout in single line in python
x, y = map(int, input().split())
Example 2: input two numbers in python in a single line
inputs = []for i in range(3): # loop 3 times inputs.append(input())