/************************************************
* This class, Lab3.java ...
*
* @author:  your name goes here
* Date:		01/26/05
*
*/

//************************************************
// Honor Statement:  This work conforms to the JMU
//		Honor Code and the academic rules for this class.
// Acknowledgement:  Indicate any student help or other 
//		references for this program not directly given in the
//		assignment.  Include TA name if applicable.
//************************************************

import java.util.Scanner;
import java.io.*;

public class Lab3
{
	/** main method - what do I do?
	*/
   public static void main (String args [])
	{
	 	// These are required variables.  Add any other variables needed
		// below these required ones.  
		Scanner myKeyboardScanner, myFileScanner;
      String fileName;     
	   
		// sets up myKeyboardScanner for keyboard input
		myKeyboardScanner = new Scanner (System.in);
	  
	   // insert the filename input.txt in the statement below
		myFileScanner = new Scanner (new File ( ) );	

		// follow the instructions and insert the rest of the code below.
	}
}

      