I currently use anaconda3. When I ran the code in anaconda below:
n, m = map(int, input('insert : ').split())
I wanted to see the result below
n, m = map(int, input('insert : ').split())
Then, I could put some datas next to the 'insert :'
message.
However, I got this error code below instead of 'insert :'
message.
ValueError: not enough values to unpack (expected 2, got 0)
How could I fix this problem?