import java.util.Scanner;
/************************************************************
 * MadLibGame - A MadLib game with a silly story
 *
 ************************************************************/
 public class MadLibGame
 {
		private MadLibIO myTools;
		
	/*********************************************************
	 * MadLib is the constructor for the MadLib object.
	 * In this application, it's primary function is to 
	 * instantiate a keyboard that can be used by ALL methods
	 * in the class
	 ********************************************************/
	public MadLibGame()
	{
		
		myTools = new MadLibIO();
		
	}
 	/*********************************************************
	 * tellStory is the controlling method to produce the story
	 * It will call other MadLib methods to carry out the actions.
	 *********************************************************/
 	public void tellStory()
	{
		
				
		//input (use your Toolkit methods) 
		
		
      // manipulations
	
				
		//output
		
	
	} //END tellStroy

 } //END Class MadLib