A bug collector collects bugs every day until he or she has at least 100 bugs. For each day, input the number of bugs for that day. Output the total number of days and the total number of bugs.
A customer in a book club gets points when the buy books, based on the number of books they buy. Input the number of books, and output the number of points according to the rules below. Use appropriate comments, prompt and labels:
0 books, 0 points
1 book, 5 points
2 books, 15 points
3 books, 30 points
4 or more books, 60 points.
Input the names of three runners and the time it took them to finish the a race. You may input the time in seconds. Your program must allow them to be entered in any order. Print out the names and times of the runners in the order of their finish. You may use if, elif, and else, but not the sort function. Print them one runner per line.