1 public class DiceAnalyzer
2 {
3 public static void main(String[] args)
4 {
5 final int SIDES = 6;
6 Dice dice = new Dice(SIDES);
7 dice.countInputs();
8 dice.printCounters();
9 }
10 }