#include using namespace std; class Second { public: Second(int=0); ~Second(); private: int b; }; Second::Second(int bi) { b = bi; cout << "Second Constructor " << b << endl; } Second::~Second() { cout << "Second Destructor " << b << endl; } class First { public: First(); ~First(); private: Second s; }; First::First() { cout << "First Constructor" << endl; } First::~First() { cout << "First Destructor" << endl; } int main (void) { Second suzie(3); First joe; }