Create a function that takes a string representing a fraction, and return a string representing that input as a mixed number.
1 2/3 — note the space between the whole number portion and the fraction portion.mixed_number("5/4") ➞ "1 1/4"
mixed_number("6/4") ➞ "1 1/2"
mixed_number("8/4") ➞ "2"
mixed_number("4/6") ➞ "2/3"
mixed_number("-1/4") ➞ "-1/4"
mixed_number("-5/4") ➞ "-1 1/4"
mixed_number("-8/4") ➞ "-2"
All provided inputs will be formatted similarly, negative numbers will be provided in the numerator portion only, and all inputs will contain no spaces, invalid characters, or zero denominators.