I'm new to code and want the smallest number to be outputted and, i'm using (min) to determine that. however (min) only wants to read the first digit. i need it to work with at least double digits below is the code I've used:
c = input("Enter a number: ")
b = input("Enter a number: ")
a = input("Enter a number: ")
d = (min(c, b, a))
print ("Smallest: " + (d))
I really haven't tried that much as i'm new to this and learning through an online class not face to face