program to take input divided by the space in python code example
Example 1: python space separated input
l = list(map(int,input().split())
Example 2: how to take input in python3 separated by space
inp = list(map(int,input().split()))
l = list(map(int,input().split())
inp = list(map(int,input().split()))