#try to avoid input function
a =int(input("Enter any Number :"))
b =int(input("Enter any Number :"))
##Modal 1
if a < b :
print("The smallest number is",a)
else:
print("The smallest number is",b)
##Modal 2
##print("The smallest number is",min(a,b))
Click the run button. Try to avoid input() function.