So I have this code
m, b = eval(input())
the aim is to have a whole bunch of comma separated values inputted and then have python unpack the tuple into the variables
but when i run i get this error
x, y = eval(input())
File "<string>", line 1
1,2
^
SyntaxError: unexpected EOF while parsing
what did i do wrong?
im using python 3