# MODIFY THE TEMPLATE TO: Gets a number, and returns # a sum of the next three multiples of that number # multiplied by three # # For example, if the input is the number 2, the program would return 78 which is # a sum of "6 18 54". (54 is 3 times 18) def template(number1): result = 0 # WRITE YOUR CODE HERE return result # END OF YOUR CODE # DO NOTE MODIFY THE FOLLOWiNG CODE # The following code is a driver testing your code. test1 = template(0) test2 = template(1) test3 = template(2) if (test1 == 0): print("result of input 0 is 0, you got it RIGHT!") else: print("result of input 0 is 0, you got: " + str(test1)) if (test2 == 39): print("result of input 1 is 39, you got it RIGHT!") else: print("result of input 1 is 39, you got: " + str(test2)) if (test3 == 78): print("result of input 2 is 78, you got it RIGHT!") else: print("result of input 2 is '6 18 54', you got: " + str(test3)) if (test1 == 0 and test2 == 39 and test3 == 78): print("Your code PASS all the tests") else: print("Please check your code, at least one test case did not pass.")