input in the same line python code example
Example 1: take two numbers as inout in single line in python
x, y = map(int, input().split())
Example 2: taking input of n integers in single line python in a list
arr = list(map(int, input().split()))