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