Write seconds_to_minutes(total) that converts a total number of seconds into a string like "4m8s" — whole minutes plus leftover seconds. Use // for the integer-divided minutes and % for the leftover seconds, then stitch them into a string.
seconds_to_minutes(total)
"4m8s"
//
%