import java.io.*;
/**
 *  Description of the Class
 *
 *@author     jeff
 *@created    May 15, 2003
 */
public class grades {
	/**
	 *  The main program for the grades class
	 *
	 *@param  args             The command line arguments
	 *@exception  IOException  Description of the Exception
	 */
	public static void main(String[] args) throws IOException {
		try {
			BufferedReader input = new BufferedReader(new FileReader("C:/Documents and Settings/Noelle Berryman/My Documents/Jeffrey's folder/New Folder/proj1/grades.txt"));
		} catch (FileNotFoundException e) {
			System.out.println(e.getMessage());
			System.exit(0);
		}
		BufferedReader output = new BufferedReader(new InputStreamReader(System.in));
		for (int i = 0; i < 100; i++) {
			System.out.print("Testing   ");
		}

	}
}


