import java.util.Scanner;
/****************************************
 * MadLibIOStarter has the Scanner code that
 * should be at the top of your toolkit. 
 * You can only have one Scanner to have 
 * webcat work. 
 *
 * This demonstrates that correct way to declare
 * and initialize instance variables.
 * NOTE: This is not a class, but pieces that you 
 * can incorporate into your class.
 */
 private Scanner keyboard;
 
 /****************************************
  * Constructor instantiates a Scanner 
  * object should be used by all methods
  * of the class.
  */
 public MadLibIO ()
 {
    keyboard = new Scanner(System.in);
 }
 
 
 