Make me a program that can tell if a person is human or a computer. Draw two faces on the screen, one happy and one sad. Wait for the user to click. If they click the happy face, tell them they are human. If they click the unhappy, tell them they are a computer. If they missed, tell them they are poopy. Keep track of the number of clicks. Hints on how to do this Make two global variables, clickedX and clickedY. Make another global variable, clickCount. In mouseClicked, set they variables to where they clicked. In mouseClicked, update the count. In paint, g.drawString(...) based on where they clicked. In paint, g.drawString based on the count. Due Thursday Sep 22.