1 2 3 4 5 6 7 8 9 10 11 12
a,b,c=input("Enter three inputs ").split() ''' Output Enter three inputs 1 2 3 >>> a '1' >>> b '2' >>> c '3' >>> '''