one line python code to take int list input code example
Example: how to input multiple integers in python
x,y=map(int,input().split())#you can change the int to specify or intialize any other data structures
print(x)
print(y)
x,y=map(int,input().split())#you can change the int to specify or intialize any other data structures
print(x)
print(y)