#include<iostream> using namespace std; class Complex { private: int real, imag; public: Complex(int r = 0, int i = 0){ re...