(define (System.out.println x) (begin (display x) (newline) ) ) (let( (Len (read (current-input-port))) (Before (read (current-input-port))) (After (read (current-input-port))) (CngCnt 0) ) (begin (let loop((i 0)) (begin (unless (string=? (substring Before i (+ i 1)) (substring After i (+ i 1))) (set! CngCnt (+ CngCnt 1)) ) (unless (= i (- Len 1)) (loop (+ i 1)) ) ) ) (System.out.println CngCnt) ) )