n = int(input()) s = input() T = input() cnt=0 for i in range(n): if s[i]!=T[i]: cnt+=1 print(cnt)