""" CSCI146 Programming Assignment 4 Name: Section: Creativity: """ # Implement your functions here def main(): """Launch the math wiz game, including asking user if they want to play""" # When you start to work on the "finishing touches" section, delete this comment # and `pass` statement, and add statements to get user input and play the game pass if __name__ == '__main__': # Invoke the main function automatically when the program is run main()