class Rectangle { private: int w, h; public: Rectangle(); Rectangle(int nH, int nW); int getArea(); };