#include using namespace std; class Rectangle { private: int width, height; public: Rectangle(int w, int h); Rectangle(int s); Rectangle(); ~Rectangle(); int getWidth() const; int getHeight() const; void setWidth(int w); void setHeight(int h); };