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

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

#include <stream.h>
#include <Dice.h>

testdice(void)
{
  Dice a;

  a.read();
  a.write();
  cout << "total = " << a.total() << " pair = " << a.pair() << "\n";

  a.read();
  a.write();
  cout << "total = " << a.total() << " pair = " << a.pair() << "\n";
}
// End of file
