input number seperated by space pythion3 code example
Example 1: input spaces seperated integers in python
# case1: suppose you need to get two integers
i1, i2 = map(int, input().split())
# case2: want a list?
lst = map(int, input().split())
Example 2: how to take input in python3 separated by space
inp = list(map(int,input().split()))