Note: You may assume that all input is in integer form,
	and there will be no more than 20 bars.
	Your program should prompt the user
	for all input using the GraphicsApplet interface (not
	the console).  That is, you should use readInt(), not
	Console.in.readInt().
	
Hint: You might want to change the coordinate system to match the range of the data (that is, from 0 to 100). See CCJ, p 113 for more details.
Prompt the user if they would like to try again. If their answer starts with 'y' or 'Y', clear the window and simulate another random walk. If the user enters anything else, thank them for playing.
For example,
Submit this as program 14 using the electronic submission. Please call the file (and the class) Program14. Include an HTML file in the directory called Program14.html that displays your applet.
Extra credit if you also highlight the path that the simulated person walks. Since we're working in black and white, one way to do this would be to draw a line slightly below and above the path, making the path appear as a wider line.
For the extra credit: Your program should prompt the user for the number of leaves using the GraphicsApplet interface (not the console). That is, you should use readInt(), not Console.in.readInt().