
public class RectangleDemo
{
    public static void main(String[] args)
    {
        Rectangle box = new Rectangle( );
        box.setDimensions(10, 5);
        System.out.println("The area of our rectangle is " + box.getArea( ));
    }
}
