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