// CardTest.java

public class CardTest
{

	public static void main(String[] args)
	{

		Card aCard=new Card(0);
		Card bCard=new Card(51);
		System.out.println("The first card is the " +
			aCard.getFace() + " of " + aCard.getSuit() +
			" and is worth " + aCard.getValue() + " points in " +
			"Blackjack.");
		System.out.println("The second card is the " +
			bCard.getFace() + " of " + bCard.getSuit() +
			" and is worth " + bCard.getValue() + " points in " +
			"Blackjack.");


	}

}