#include using namespace std; class father { public: int a,b; }; class son:public father { }; int main() { son a; a.a=1; a.b=2; cout<