N,M = map(int,input().split()) S = input() T = input() a = S.count('A') b = T.count('A') c = N-a d = N-b print(min(a,b) + min(c,d))