how to get 2 values from one line from a document 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)