class Rectangle { private: int width, height; public: Rectangle(int w, int h){ width = w; height = h; } };