import java.util.Scanner;
/************************************************************
 * MadLib - A MadLib game with a Halloween story
 *
 * @author 
 * @version 
 ************************************************************/
 public class MadLib
 {
 	Scanner keyboard;  // keyboard should be used for all input
	
	/*********************************************************
	 * 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 MadLib()
	{
		keyboard = new Scanner(System.in);
	}
 	/*********************************************************
	 * tellStory is the controlling method to produce the story
	 * It will call other MadLib methods to carry out the actions.
	 *********************************************************/
 	public void tellStory()
	{
	
	}
	
	// Your methods will go below this line.
 }