// HighScore.java
// brp
import java.io.*;

public class HighScore
{
	public static void main(String[] args) throws IOException
	{

		FileWriter writer = new FileWriter("scores.txt");
		PrintWriter out = new PrintWriter(writer);
		try
		{
			out.println("BRP");
			out.println(250000);
		}
		finally
		{
			if (out!=null)
				out.close();
		}


		FileReader reader = new FileReader ("scores.txt");
		BufferedReader in = new BufferedReader(reader);
		try
		{
			String inputLine = in.readLine();
			System.out.println("First Player's Initials:" +
				inputLine);
			inputLine = in.readLine();
			int x = Integer.parseInt(inputLine);
			System.out.println("First Player's Score:" + x);
		}
		finally
		{
			if (in!=null)
				in.close();
		}




	}
}