class Base { int a; public: Base(int x) { a = x; } virtual void show() { cout << a << " "; } }; class Derived: public Base { int c; public: Derived(int x, int y): Base(x) { c = y; } void show() { Base::show(); cout << c << " " << endl; } }; int main() { Derived D1(7, 8); Base _____________ ; pshow(); return 0; }