// This may look like C code, but it is really -*- C++ -*-

//
//  monopoly-template  --  Copyright (c) University of Aizu 1994
//
// [# Edit, Date, User, Module #]

#include <Account.h>

testaccount(void)
{
  Account a,b;

  a.read();
  b.read();

  a.write();
  b.write();

  a += 100;
  a -= 110;
  b += a -= 111;

  a.write();
  b.write();
}
// End of file
