################### # name: Richard # date: 10-10-06 # descript: find the minimum ################### a = input("Enter a number ") b = input("enter another ") if a <= b: print a else: print b c = min(a,b) print "the min is ", c