// AccountClient.C -- client code

#include <iostream.h>
#include "Account.h"

int main()
{
  Account acct1;
  cout << acct1.Dollars() << endl;
  acct1.Deposit(500);
  cout << acct1.Dollars() << endl;

  Account acct2(1700);
  cout << acct2.Dollars() << endl;

  if (acct1 == acct2) {
    cout << "they're equal\n";
  } else {
    cout << "they're not\n";
  }
  return 0;
}
