(define (my-even? x) (= (modulo x 2) 0)) (define (my-odd? x) (= (modulo x 2) 1))