Math Function: make 5 appear as 05

probably pretty simple.

I have a value that's minutes.seconds which presents like 5.55
i would like to keep my 0 placeholder - so 5.5 (5 minutes 5 seconds) would present like 5.05

I could do the old if less than 10 join "0" & seconds as a string.
but that just feels . . . silly