Is it possible to input 2 numbers int or float separated by a comma in a single line?
int
float
Say after the program runs it would ask the user to <
In python3 you can directly use input() method instead of raw_input()
var1,var2 = input().split(',')