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
This is good solution imho a, b = input().split().
a, b = input().split()
If you want to separate input with custom character you can put it in parenthesis e.g. a, b = input().split(",")
a, b = input().split(",")