99 LISP problems: Problem #33 Aug 6th, 2014 2:08 am Solution to the 99 LISP Problems #33 1 2 3 4 5 6 7 (defun eucgcd (m n) (let ((p (abs m)) (q (abs n))) (cond ((= m n) m) (t (gcd (- (max m n) (min m n)) (min m n)))))) (defun coprimep (m n) (= (eucgcd m n) 1)) Lisp dialect: Steel Bank Common Lisp