import java.util.Scanner; // Remove if not using a Scanner

/*********************************************************************
* Lab  << Description of what the program should do >>>
*
* @author
* @version  
**********************************************************************/
public class Template
{
   /***************************************************************
   * Main method and entry point to the program
   * @param args unused in this program  
   ****************************************************************/
   public static void main (String[] args)
   {
      // declarations
      		
      // initialization and data reads
      
      // data manipulation (calculating the result)
      
      // output the result
           
   }
}
