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