class School{private: Student a; Teacher b;public: School(int _a,double _b):a(_a),b(_b){cout<<"A school is created."<<endl;} ~School(){cout<<"A school is erased."<<endl;}};