#include <iostream>
using namespace std;
class human
{
public:
void get_stature(){cout<<stature;}
void GetWeight();
void SetStature(int x){stature=x;}
private:
int stature;
int weight();
};
void main()
{
human Mike;
Mike.SetStature(8);
Mike.get_stature();
}