/*
	F12 cs401 Instructor Tim Hoffman
	FINAL EXAM PROGRAMMING PROBLEM

	YOUR NAME:
	YOUR PITT ID: (i.e. "JFK63", not your pSoft#)
*/


import java.util.*;
import java.io.*;

public class Potus
{
	public static void main( String[] args )  throws Exception
	{
		BufferedReader infile1 = new BufferedReader( new FileReader("state2Presidents.txt") );
		BufferedReader infile2 = new BufferedReader( new FileReader("allPresidents.txt") );
		BufferedReader infile3 = new BufferedReader( new FileReader("allStates.txt") );

		// YOUR CODE HERE TO DECLARE MAPS OR SETS TO HOLD THE DATA OF THESE THREE INPUT FILES







		// ################# STEP #1 worth 60% or 70% ###################

		// YOUR CODE HERE TO READ infile1 INTO A Map

		System.out.println( "The following states had these presidents born in them:\n");  // DO NOT REMOVE OR MODIFY

		// YOUR CODE HERE TO *PRINT* THE MAP ACCORDING TO THe FORMAT SPECIFIED FOR STEP #1
		// DUMP IT LAZY = 60%  OR  PRINT IT FORMATTED = 70%




		// ################# STEP #2 worth 15% ###################

		System.out.println( "\nList of presidents and the state each was born in:\n");  // DO NOT REMOVE OR MODIFY

		// YOUR CODE HERE TO PRINT THE INVERSION OF THE MAP worth 15%




		// ################# STEP #3 worth 10% ###################

		System.out.println( "\nThese presidents were born before the states were formed:\n");  // DO NOT REMOVE OR MODIFY

		// YOUR CODE HERE TO PRINT THE NAME(S) Of ANY PRESIDENT(s)
		//  WHO WERE BORN BEFORE THE STATES WERE FORMED = 10%






		// ################# STEP #4 worth 5% ###################

		System.out.println( "\nThese states had no presidents were born in them:\n");

		// YOUR CODE HERE TO PRINT THE NAME(S) OF ANY STATE(s) WHICH HAD NO PRESIDENT BORN IN THEM 5%




	} // END MAIN

	//              - - - - - - - - - - -  H E L P E R    M E T H O D S     D O W N    H E R E  - - - - - - - - - -







}	// END POTUS CLASS