/**
 * The EggyPeggy main program for word game Eggy-Peggy. 
 * The program reads in a string from the user and generates a new 
 * converted string that includes the word "egg" in front of all
 * vowels in the input string.
 *
 * @author Dr. Caffeine
 *
 */ 
class EggyPeggyMain
{
    public static void main (String[] args)
    {
        EggyPeggy eggyPeggy = new EggyPeggy( );
        eggyPeggy.start();
    }
}