#include <stdio.h>
#include "dice.h"

main()
{
  struct dice d;
  srand(time(0));

  Read(&d);
  printf("Total = %d, twin = %d\n", Total(&d), Pair(&d));
  Roll(&d);
  Write(&d);
}
