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.mixedNumber("5/4") ➞ "1 1/4"
mixedNumber("6/4") ➞ "1 1/2"
mixedNumber("8/4") ➞ "2"
mixedNumber("4/6") ➞ "2/3"
mixedNumber("-1/4") ➞ "-1/4"
mixedNumber("-5/4") ➞ "-1 1/4"
mixedNumber("-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.