To Hand Your Programs In: Run Your Submission Folder App A Window should pop up with a folder in it called CS202-02-25F Inside this folder create another folder called PG1. PG1 goes inside CS202-02-25F Inside PG1, place your Python programs: interest.py and ball.py . Don't put anything else in there. Don't put the whole !@#$#@ Visual Studio folder in there. Also inside PG1, place an EMPTY file or folder named DONE . Capital DONE no .txt no suffix of any kind. Exactly four letters: DONE CS202-02-25F PG1 interest.py ball.py DONE The first thing the autograder does is delete the DONE file. So if you have important stuff in there, that stuff will be deleted. The DONE should be empty. Then it runs your programs. After I grade your program, there will be a new file in there called PG1-1.out . Maybe you have a score if you like. If you don't like it, you can fix it. The PG1-1.out will contain your source code, what happens when I run it, my comments, your grade, and a new due date. If you resubmit it, put the new code in there, and make a new DONE file. After I grade it a second time, you will find a file in there called PG1-2.out . If statements: In Python or any programming language, sometimes you have a decision or a choice. And depending on the the choice you make, your program should do different things.