import java.util.Scanner;

/** Input and Output main program
 *
 * @author Duncan Buell
 *
 * written: 27 February 2008
*/
public class Main
{

  public static void main(String[] args)
  {
    Scanner console = new Scanner(System.in);
    Loan myLoan = new Loan();

    myLoan.inputPrincipal(console);

    myLoan.inputRate(console);

    myLoan.inputMonthlyPayment(console);

    myLoan.amortize();

    System.out.println("Loan information processed, terminate");

  } // public static void main(String[] args)

} // public class Main

