import java.io.File;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.util.Scanner;

// Name:

// Date:


public class RunSkiRace {

	/**
	 * @param args
	 */
	public static void main(String[] args) 
	    throws FileNotFoundException 
	{
		// TODO 1) read in from data file "skidata.txt"
		//      2) run three rounds of a race
		//      3) print the results 
		//      4) print name(s) of fastest skier(s)


 			
		
	}

}
