/**
 * The HiLo main program for playing Hi-Lo games. The objective of the  
 * game is to guess the secret number (any integer between 1 and 100) 
 * with the least number of tries. The maximum number of tries 
 * allowed is six. The program will display the hint HI if the guess 
 * is higher than the secret number and LO if the guess is lower than 
 * the secret number. The message "You guessed it in <N> tries" or 
 * "You lost. Secret no.      was <X>" appears at the end of one game.
 *
 * @author Dr. Caffeine
 *
 */ 
class HiLoMain
{
    public static void main (String[] args)
    {
        HiLo hiLo = new HiLo( );
        hiLo.start();
    }
}