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