more than 1 input in 1 line in python code example
Example: 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)
x,y=map(int,input().split())#you can change the int to specify or intialize any other data structures
print(x)
print(y)