import java.util.Random;
public abstract class DiceRoll {
public static void main(String[] args) {
int Dice1 = 0;
int Dice2 = 0;
Random generator = new Random();
int counter = 0;
int nOne = 0;
int nTwo = 0;
int nThree = 0;
int nFour = 0;
int nFive = 0;
int nSix = 0;
for(int i=0; i < 1200 ; i++) {
Dice1 = (int)(Math.random()*6) + 1;
Dice2 = (int)(Math.random()*6) + 1;
} // end for
System.out.println("There were " + nOne + " ones, " + nTwo + " twos, "
+ nThree + " threes, " + nFour + " fours, " + nFive + " fives, and, "
+ nSix + " sixs " + "were rolled out of ");
} // end main
} // end class DiceRoll