/* Rafay Ahmad 23I-2526 */ #include using namespace std; class Complex{ int real; int img; public: Complex(){} Complex(int real, int img) : real(real), img(img){} void print(){ cout<