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
Below snippet works for me.
a, b = input().split(" ") a_value = int(a) b_value = int(b)