s-99-33


Using gcd solution from previous problem

(define coprime?
  (lambda (a b)
    (if (eq? (gcd a b) 1)
      #t
      #f)))