public class RecursiveDriver2
{
  public static void main (String args [])
  {
      int result;

		  result = RecursivePlay2.recursiveS (-5);
		  System.out.println ( result + "  ");
			
		
		  result = RecursivePlay2.recursiveT (-6);
		  System.out.println ( result + "  ");
		 
		System.out.print
		   ( " The result of multiplying  9 and -8 is ");
		 
	   result = RecursivePlay2.recursiveMultiply (9,-8);
		System.out.println (result);
		
		System.out.print
		   ( " The result of multiplying  16 and 0 is ");
	   result = RecursivePlay2.recursiveMultiply (16, 0);
		System.out.println (result);
		
		System.out.print
		   ( " The result of multiplying -4 and 5 is ");
	   result = RecursivePlay2.recursiveMultiply (-4, 5);
		System.out.println (result);
		
		
	} // end main
} // end RecursiveDriver2
	 