# include # include class number { public: int a,b; void getdata() { cout<<"enter the value of a"; cin>>a; cout<<"enter the value of b"; cin>>b; } }; class addition : public number { public: int sum; void display(); { sum=a+b; cout<<"the value of sum is="<