import sequtils, strutils let n, s, t = stdin.readLine var cnt = 0 for (a, b) in s.zip t: if a != b: inc cnt echo cnt