#include "Dice.h"

main()
{
  Dice d;

  d.read();
  printf("Total = %d, twin = %d\n", d.total(), d.double());
  d.roll();
  d.write();
}
