simplify_mixed_numbers

simplify_mixed_numbers(
    numerator1,
    denominator1,
    numerator2,
    denominator2,
    whole_number1,
    whole_number2
) -> 

Simplifies the sum of two mixed numbers and returns the result as a string in the format ‘a b/c’.

Parameters:
NameDescription
numerator1The numerator of the first fraction.

denominator1The denominator of the first fraction.

numerator2The numerator of the second fraction.

denominator2The denominator of the second fraction.

whole_number1The whole number part of the first mixed number.

whole_number2The whole number part of the second mixed number.