Your next task is to create a subclass of Rectangle, named Square. Square should override the width= method to set both the width and height to the given value when called. It should do the same with the height= method. (Don’t worry about checking whether the values are negative.) All other methods should be inherited from Rectangle. The area method should work without any need to override it.