/* Read in three integers from the user, and print out the * product of all three, then the sum of all three. Finally * print out the product of the first two divided by the third * as a float with two decimal points, 'division' being * interpreted as real division. */ #include #include int main (void) { int a, b, c; float f; /* BEGIN ANSWER - do not delete this line */ // ADD YOUR CODE HERE /* END ANSWER - do not delete this line */ return EXIT_SUCCESS; }