This is somewhat of a simple question and I hate to ask it here, but I can\'t seem the find the answer anywhere else: is it possible to get multiple values from the user in
I tried this in Python 3 , seems to work fine .
a, b = map(int,input().split()) print(a) print(b)
Input : 3 44 Output : 3 44
Input : 3 44
Output :
3
44