//BankAccount3Client.java
import CSLib.*;
public class BankAccount3Client
{
	public static void main (String [] args)
	{
		OutputBox out = new OutputBox("Testing BankAccount3 Class");
		out.setSize (350, 100);

		BankAccount3 myAccount = new BankAccount3(2000);
		out.println ("" + myAccount);
		
		myAccount.deposit(1000);
		out.println ("" + myAccount);
		
		BankAccount3 yourAccount = new BankAccount3();
		out.println ("" + yourAccount);
	}
}

