""" CSCI 150 Spring 2020 Lab 4 Name: Section: Creativity: """ # Function definitions for math wiz def main(): """ Launch the math wiz game by asking user if they want to play. If yes, ask for how long, and play until time is elapsed. If no, give a goodbye message. """ # 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 # Main program will be launched automatically when program is run if __name__ == '__main__': main()