Whether this Rat is less or equal to other.
other
bool operator <=(Rat other) { return n * other.d <= other.n * d; }