Problem
1. Implement the remaining simple arithmetic operators (__sub__, __mul__, and __truediv__).
2. Implement the remaining relational operators (__gt__, __ge__, __lt__, __le__, and __ne__)
3. Modify the constructor for the fraction class so that it checks to make sure that the numerator and denominator are both integers. If either is not an integer the constructor should raise an exception.