Write a program that reads two fractions such as 1/2 and 1/4 and computes and stores the sum, the difference, the product and the result of dividing one by the other in four other fractions, respectively. Display the four resulting fractions. The following is a sample interaction between the user and the program: Enter two fractions: 1/2 1/4 Sum fraction: 6/8 Difference: 2/8 Product: 1/8 Quotient: 4/2 Press any key to continue. If n1/d1 and n2/d2 are the two fractions, their sum is given by: n1 * d2 + n2 * d1 / d1 * d2 their difference is given by: n1 * d2 – n2 * d1 / d1 * d2 Product is: n1 * n2 / d1 * d2 Quotient: n1 * d2 / d1 * n2 Make sure the program pauses and waits for a key to be pressed before continuing. Put your name on top as a comment.