public class Largest
{
	public static void main(String[] args)
	{
		double highestScore=0;
		double newInput;
		
		System.out.print("Enter the first Score: ");
		newInput = MyInput.readDouble();
		
	    if (newInput >= highestScore)
	       {highestScore = newInput;}
	
		System.out.print("Enter the Second Score: ");
		newInput = MyInput.readDouble();
		
	    if (newInput >= highestScore)
	       {highestScore = newInput;}
	       
	    System.out.print("Enter the first Score: ");
		newInput = MyInput.readDouble();
		
	    if (newInput >= highestScore)
	       {highestScore = newInput;}
	       
		
		
		
		System.out.println("The largest score is = " + (int)highestScore);
	
	}
}
