Design and implement a Rectangle class. Make your class inherit from the Point class given in the lecture (notice that a rectangle can be described through the upper-left vertex, the height, and the width). Include acccesors, mutators, constructors, a method to display the information of the rectangle, and an area method. Write a Main class to test your Rectangle class.