friend const Stu operator+(const Stu &L,const Stu &R);
friend const Stu operator-(const Stu &L,const Stu &R);
friend const Stu operator*(const Stu &L,const Stu &R);
friend const Stu operator/(const Stu &L,const Stu &R);
friend const Stu operator%(const Stu &L,const Stu &R);
friend bool operator>(const Stu &L,const Stu &R);
friend bool operator>=(const Stu &L,const Stu &R);
friend bool operator<(const Stu &L,const Stu &R);
friend bool operator<=(const Stu &L,const Stu &R);
friend bool operator==(const Stu &L,const Stu &R);
friend bool operator!=(const Stu &L,const Stu &R);
friend Stu &operator+=(Stu &L,const Stu &R);
friend Stu &operator-=(Stu &L,const Stu &R);
friend Stu &operator*=(Stu &L,const Stu &R);
friend Stu &operator/=(Stu &L,const Stu &R);
friend Stu &operator%=(Stu &L,const Stu &R);
cout << "name = " << name << endl;
cout << "name = " << name << endl;
const Stu operator+(const Stu &L,const Stu &R)
const Stu operator-(const Stu &L,const Stu &R)
const Stu operator*(const Stu &L,const Stu &R)
const Stu operator/(const Stu &L,const Stu &R)
const Stu operator%(const Stu &L,const Stu &R)
bool operator>(const Stu &L,const Stu &R)
if(L.a > R.a && L.b > R.b)
bool operator>=(const Stu &L,const Stu &R)
if(L.a >= R.a && L.b >= R.b)
bool operator<(const Stu &L,const Stu &R)
if(L.a < R.a && L.b < R.b)
bool operator<=(const Stu &L,const Stu &R)
if(L.a <= R.a && L.b <= R.b)
bool operator==(const Stu &L,const Stu &R)
if(L.a == R.a && L.b == R.b)
bool operator!=(const Stu &L,const Stu &R)
if(L.a != R.a && L.b != R.b)
Stu &operator+=(Stu &L,const Stu &R)
Stu &operator-=(Stu &L,const Stu &R)
Stu &operator*=(Stu &L,const Stu &R)
Stu &operator/=(Stu &L,const Stu &R)
Stu &operator%=(Stu &L,const Stu &R)