read two space separated integers in python code example
Example 1: take space separated int input in python
inp = list(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)
Example 3: how to input n space separated integers in python
PQT =list(map(int, input().split()[:N]))