// First program
// MW, 12/1/00

public class FirstProgram
{
    public static void main( String [ ] args )
    {
        System.out.println( "Is there anybody out there?" );
    }
}
