Problem: Determine the Number of Digits in an Integer

General form:
 (define num-digits
   (lambda (n)
     (if (< n 10)
         1
         _________)))

Q: What is the recursive case?