import java.lancs.Card; public class Ex3n4 { public static void main (String[] args) { System.out.println (); Card card1 = new Card () ; Card card2 = new Card () ; System.out.print ("the first card is the ") ; System.out.print (card1.getValueString () + " of ") ; System.out.println (card1.getSuitString ()) ; System.out.print ("the second card is the ") ; System.out.print (card2.getValueString () + " of ") ; System.out.println (card2.getSuitString ()) ; System.out.println (); } // end of main method } // end of class