def Main(): n=int(input()) s=input()[::-1] t=input() ans=0 for i in range(n): if s[i]!=t[i]: ans+=1 print(min(ans,n-ans)) Main()