#include using namespace std; class Human { public: void GetStature(); void GetWeight(); private: int stature; int weight; }; void main() { }