import java.util.*;

public class Manager {
  Vector accounts = new Vector();

  public Account createAccount(Customer c) {
    // Check if the account you are trying to create already exists
    // If the account already exists, print a msg informing the user
    // Otherwise, create the new account and add it to the vector
    // Make sure you return an account....
  }
     

  public void deleteAccount(Account account) {
   // check if the account exists....if it does, delete it otherwise
   // tell the user it doesn't exist.....
  }
}