######################## ### Multadd function ### ######################## """ Write a function called multadd that takes three paramaters - a, b, and c - and returns a*b + c as a float. You can only assume a, b, and c are numbers. @params a, b, c: numbers returns: a*b + c, a float """ ########################## ### Multadd test cases ### ########################## """ Write three test cases for multadd. For each test case, write: - the input - the expected output - the call to multadd to run the test case - the actual output after testing Comment out your test cases after running them. """ ##################### ### Using multadd ### ##################### """ Use your multadd function to compute the value angle_test and ceiling_test as defined in the checkoff handout. Assign angle_test and ceiling_test to calls to multadd, then uncomment the code below. """ ##angle_test = ##ceiling_test ##print "sin(pi/4) + cos(pi/4)/2 is: " ##print angle_test ##print "ceiling(276/19) + 2 log_7(12) is: " ##print ceiling_test