/*

  A program that computes the intersection between two Rectangles. (Ex. P2.4)
  CSC120A - Berry College - Fall 2006
*/

// import the Rectangle class from the java.awt package

public class RectangleIntersect {
  
  public static void main( String[] args ) {
    // create two Rectangle objects 
    
    // print them out
    
    // compute the rectangle object representing their intersection
    
    // print out the intersection rectangle

  } // end main method
  
} // end class
