import java.util.Scanner;

/**
   This program tests the Easter class.
 */
public class EasterTester
{
   public static void main(String[] args)
   {
      Scanner in = new Scanner(System.in);
      
      System.out.println("Please enter the year:");
      int year = in.nextInt();

      Easter myEaster = new Easter(year);

      System.out.println("The month of Easter Sunday is "
         + myEaster.getMonth() + " " + "and the date is "
         + myEaster.getDay());
   }
}

