package lab03;

/**
 * A very simple Java program that does nothing but generate some output.
 * 
 */
public class WhatAnEgo 
{
    /**
     * The entry point of the application
     *
     * @param args The command-line arguments (which are ignored).
     */
    public static void main(String[] args) 
    {
        String message;

        message = Rater.ratingFor("Bernstein", 1100, 1100);
        System.out.println(message);
    }
}
