Creates a new Rat from two integers (numerator and denominator).
static Rat fromInt(int n, [int d = 1]) { return Rat(BigInt.from(n), BigInt.from(d)); }