public class DiceGameRunner {

	public static void main(String args[])
	{
		DiceGame game = new DiceGame();
		
		game.playGame();
	}
}
