class complex
{
int real;
int img;
public:
complex( int _real,int _img ) { real = _real; img = _img; }
complex & operator + ( complex & x )
{
real += x.real;
img += x.img;
}
};
class complex
{
int real;
int img;
public:
complex( int _real,int _img ) { real = _real; img = _img; }
complex & operator + ( complex & x )
{
real += x.real;
img += x.img;
}
};