#include<iostream> using namespace std; class base { private: int x,y; public: void initxy(int a,int b){x=a;y=b;} void show() {______________} } ; void main() { base a,b; _____________