public class Money
{	
	private int cents;
	
	// constructors

	public Money(int dollars, int cents)
	public Money(int cents)
	public Money(double amount)
	
	
	// functional methods
	public static Money add(Money first, Money second)
	public Money add(Money other)
	
	public static Money sub(Money first, Money second)
	public Money sub(Money other)

	private Money moneyMath(Money first, Money second, String mode)
	private Money moneyMath(Money first, double second, String mode)
	
	public static Money multi(Money m1, double rate)
	public Money multi(double rate)
	
	public static Money div(Money m1, double amount)
	public Money div (double amount)
	
	public int compare(Money m1)
	
	public String toString()


}