public class POOCasino{
    
    public static void main(String[] args){
	//TODO: change the following line, and get nDecks from the command line
	int nDecks = 4;
	//TODO: change the following line, and get nRounds from the command line
	int nRounds = 100;
	
	Table table = new Table(4);
	Dealer dealer = new Dealer();
	table.set_dealer(dealer);
	table.set_player(0, new Player("Hsuan-Tien Lin", 100));

	//TODO: add one player at position 1 
	//      with your name and your preferred number of chips
	
	//TODO: add another player at position 2 with your favorite 
	//      idol's name and your preferred number of chips

	for(int t = 0; t < nRounds; t++)
	    table.play();
    }
}

