 /*****************************************************************
 * Program: TotalCost 
 * Programmer: Insert your name here 
 * 
 * Due Date: 
 * Class: COMP 110_01         Instructor: Tyler Johnson
 *         
 * Pledge: I have neither given nor received unauthorized aid
 * on this program.     (signature on file)
 *
 * Description: Insert the program description
 *
 * Input: what is the input
 *
 * Output: what is the output
 *
 ******************************************************************/

   import java.util.Scanner;

   public class TotalCost  {
   
      public static void main(String[] args) {
	  
         double coat;
		 
         System.out.println("What is the cost of the coat you want to buy?");
		 
         Scanner keyboard = new Scanner(System.in);
         coat = keyboard.nextDouble();
      	
         System.out.println("What is the tax rate? (do not include a %)");
      	
         System.out.println("The total cost of your coat is");
      }
   }
