import java.util.Scanner;
// Lottery Driver
    public class LotteryDriver
   {
   
   //contains main
       public static void main (String [] args)
      {
         Scanner keyboard;
         int seed;
         Lottery myLottery;
      // introduce program to user by describing it
         System.out.println (" Welcome to my lottery program ");
         System.out.println 
            (" This program will ask you for 5 numbers which will represent your lottery picks");
         System.out.println
            (" Then the program will generate 5 random numbers to represent the lottery picks ");
         System.out.println
            (" The program will allow you to select the seed for the random number generator ");
         System.out.print
            (" Please enter an integer and hit return ");
      
         keyboard = new Scanner (System.in);
         seed = keyboard.nextInt();
      
         System.out.println (" You entered a seed of " + seed );	
      // prompt user to enter a number to use for a seed to the random number 
      // generator in class Random.  Note that class Random has a constructor
      // that uses the seed to determine where to start the sequence of random
      // numbers.
      
      // instantiate a lottery object which will call the object's constructor
         myLottery = new Lottery (seed);
      
      }
   }