python input space separated code example
Example 1: take space separated int input in python
inp = list(map(int,input().split()))
Example 2: how to take space separated input in pyhon dicationary
dic = {}
for index, value in enumerate(input().split()):
dic[int(value)] = int(index)