# Mini-Assignment 3A: # Write the definition for function smaller here # ---------------------------------------------- # *parameters: smaller(int,int) # *returns: return(int) # Function returns the smallest of the two parameters. # If equal then the function just returns the value of either # parameter. ###################################### # Starting execution point # # * parameters: start() # # * returns: return() # # # # Citation: The starting code for # # this program provided by James Tam.# ###################################### def start(): num1 = -1 num2 = -1 num3 = -1 num1 = int(input("Enter a number: ")) num2 = int(input("Enter a number: ")) # Write the code here to: # ------------------------------------ # * On this line: call function smaller # * One this line: display the return value of smaller # (i.e. the smaller of num1 or num2) start()