Tran f8| at a hara - - - turn + That arel) athai aatthi taction to co - This day has al - Isaiah ince 11- - Thirai . The divided that will divide 1/3/2 * 1 ) nate: What atleet to r + Free - healetarianmate Latas d is there are , and there werd de bed Com ile pleaser is the daal | S THE ) PA The It doulevat 8.1 ----- HTTI The con fraction 1 Tel. M. M4 - SE-IN VW MAYANAN Tran f8| at a hara - - - turn + That arel) athai aatthi taction to co - This day has al - Isaiah ince 11- - Thirai . The divided that will divide 1/3/2 * 1 ) nate: What atleet to r + Free - healetarianmate Latas d is there are , and there werd de bed Com ile pleaser is the daal | S THE ) PA The It doulevat 8.1 ----- HTTI The con fraction 1 Tel. M. M4 - SE-IN VW MAYANAN Note*: We often implement the toString() method in each class. The benefit of having such a method is that, when we pass a fraction object to the System.out.println() method, the toString() method will be automatically called to print this fraction. For example: Fraction f1 = new Fraction(3, 4); System.out.println(f1); // this will print 3/4 onto screen. The toDouble() method will convert the fraction to its corresponding floating-point number, e.g, 1/2 is 0.5 Please also make sure that the numerator and denominator of a valid fraction has no common divisor that is greater than 1. For example, 4/6 is not a valid fraction number, it should be 2/3 instead. To do this, you need to first find out the greatest common divisor of the numerator and denominator, and divide both the numerator and denominator by it. For example, the greatest common divisor of 4 and 6 is 2, and therefore, we need to divide both 4 and 6 by 2, resulting in the valid fraction be 2/3. You can particularly introduce a method named getGCDO within the class definition to do this. Once you have done defining the Fraction class in Fraction.java source file, please write the client program in another java file Fraction_test.java, and test the methods of the fraction class. Outputs: $java Fraction_test Please enter the numerator and denominator of the first Fraction: 34 The first fraction is: 3/4 Its double value is: 0.75 Please enter the numerator and denominator of the second Fraction: 56 The second fraction is: 5/6 Its double value is: 0.8333 3/4 + 5/6 = 19/12 3/4 - 5/6 = -1/12 3/4 * 5/6 = 5/8 3/4/5/6 = 9/10