I want to read two input values. First value should be an integer and the second value should be a float.
I saw Read two variables in a single line with Python, but
If you wish to take as many inputs as u want then following:
x=list(map(str,input().split())) print(x)
If you want two inputs:
x,y=x,y=list(map(str,input().split())) print(x,y)