Given an amount of days, say 25, convert it into a duration text such as \"3 Weeks, 4 Days\"
C# and F# solutions would both be great if the F# variation offers any i
String.Format("{0} Weeks, {1} days", days / 7, days % 7);