
public class TestCards {
	public void run()
	{
		Card one, two;
		one = new Card(4, 4);
		two = new Card(12, 1);
		int value1, value2;
		value1 = one.getValue(); value2 = two.getValue();
	System.out.println("Values of cards 1 and 2 are" + value1 + " " + value2);
		System.out.println("Cards are: " + one + " and " + two);
	}
	
	public static void main(String args[])
	{
		TestCards myApp;
		myApp = new TestCards();
		myApp.run();
	}
}



