/* 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){} Complex operator++(int){ Complex temp(*this); real++; img++; return temp; } friend Complex operator++(Complex const &c){ } Complex operator--(int){ Complex temp(*this); real--; img--; return temp; } Complex operator--(){ real--; img--; return *this; } friend Complex operator+(Complex const& c1, Complex const& c2){} void print(){ cout<