scan two space separated input in python int code example
Example 1: take space separated int input in python
inp = list(map(int,input().split()))
Example 2: how to input n space separated integers in python
PQT =list(map(int, input().split()[:N]))