n,m=map(int,input().split()) s=list(input()) t=list(input()) ans=0 ans+=min(s.count("A"),t.count("A")) ans+=min(s.count("B"),t.count("B")) print(ans)