import java.io.*;

public class GuessingGame
{
	private static BufferedReader stdin = 
		new BufferedReader( new InputStreamReader( System.in ) );
        
	public static void main (String [] args) throws IOException
	{
		//declare and initialize computer's guess randomly
		int computersGuess = (int) (100 * Math.random());
		
		//you might want to comment in some pseudocode or steps to make things easier
	}
}
