//------------------------------------------------------------
// Main comment block
//
// Notes to the student:
// 1. Comments containing square braces are to be replaced by
//    your own comments in a simple yet readable format
//    of your choosing.
// 2. Comments contain labels should be filled in with
//    the necessary information in the format provided.
//------------------------------------------------------------
/*
* Program name: [Place program name here]
*
* Student name: [Place your name here]
* Course: [Place name of course here]
* Instructor: [Place name of instructor here]
* Date: __DATE__ __TIME__
*
* Program requirements: [Place program
*   requirements here]
*
* Items you want me know before I grade your program:
* [Place important information here]
*/

//------------------------------------------------
// import statments
// - place any required import statements below
//   this comment block.
//------------------------------------------------

//------------------------------------------------------------
// Class comment header block
//------------------------------------------------------------
/**
* [In this comment block describe the class as you have implemented it]
*/
public class __NAME__ {

    //----------------------------------------------------------
    // Default constructor
    //----------------------------------------------------------

    public __NAME__() {
    }

    //---------------------------------------------------------
    // public static main method header comment block
    //---------------------------------------------------------
    /**
     * [Describe the purpose and your design of the main method]
     */
    public static void main(String[] args)	{
        //--------------------------------------------------------
        // place all your variable and constant
        // declarations here
        //--------------------------------------------------------


        //--------------------------------------------------------
        // place all your assignment and control statements
        // here
        //--------------------------------------------------------


        //--------------------------------------------------------
        // required last / closing statement
        //--------------------------------------------------------
    System.exit(0);
    }
}
