Declare a Rational() function that gets two natural numbers (a, b) and return a string containing a record of the rational number a / b in the form of a decimal fraction, possibly periodic.
Rational(2, 5) ➞ "0.4"
Rational(1, 6) ➞ "0.1(6)"
Rational(1, 3) ➞ "0.(3)"
Rational(1, 7) ➞ "0.(142857)"
Rational(1, 77) ➞ "0.(012987)"a < b.