public static bool operator ==(Complex obj1,Complex obj2)
        {
            return obj1.re == obj2.re && obj1.im == obj2.im;
        }