public class BankApp {

 public static void main(String argv[]) {
   Customer c = new Customer("John McDonald", "2 rio", "232-2323");
   Manager m = new Manager();
   Account account = m.createAccount(c);
   account.deposit(23);
   account.withdraw(3);
   System.out.println("Balance: "+account.getBalance());
   Customer c2 = new Customer("Sarah Lee", "12 rio", "279-2323");
   Account account2 = m.createAccount(c2);
   account2.deposit(77);
   account2.withdraw(3);
   System.out.println("Balance: "+account2.getBalance());
   m.deleteAccount(account2);
   m.deleteAccount(account2);
 }

}