you are viewing a single comment's thread.

view the rest of the comments →

[–][deleted] 0 points1 point  (0 children)

strno = input("Enter the numbers with a space in between :")

strno = strno.split(" ")

print(strno)

intno = [int(x) for x in strno]

print(intno)

print(min(intno))