Complex operator+ (Complex c1,Complex c2)
{
    Complex temp;
    temp.r= c1.r + c2.r;
    temp.i= c1.i + c2,i;
    return temp;
}