/**
 * Driver class that rolls two dice and displays the sum.
 *   @author Dave Reed
 *   @version 8/15/13
 */
public class DiceRoller {
   public static void main(String[] args) {
      Die d1 = new Die();
      Die d2 = new Die();

      int roll = d1.roll() + d2.roll();

      System.out.println("You rolled a " + roll);
   }
} 

