Write a C++ program which should represent the concept of bridging two classes
#include #include #include class num2; class num1 { private: int n; public: void getdata() { cout<<"\n"<<"Enter the no: "; cin>>n; } friend class num2; }; class num2 { private: int n; public: void getdata() { cout<<"\n"<<"Enter the no: "; cin>>n; } void add(num1 n1) { n+=n1.n; } void show() { cout<<"Total sum is: "<