getting numbers in one line python code example
Example 1: take two numbers as inout in single line in python
x, y = map(int, input().split())
Example 2: how to input multiple integers in python
x,y=map(int,input().split())#you can change the int to specify or intialize any other data structures
print(x)
print(y)