i want the input we provide in for loop to be in the same line in python 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)