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 the input is separated by spaces " "
a,b,c = raw_input().split(" ")
If the input is separated by comma ','
a,b,c = raw_input().split(",")