/* 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){} friend ostream& operator<<(ostream&, Complex&); }; ostream& operator<<(ostream& out, Complex& c){ out<