#include using namespace std; #define int long long #define rep(i,s,n) for(int i = s;i=(s);i--) #define all(v) (v).begin(),(v).end() #define pb push_back #define fi first #define se second #define chmin(a,b) a=min((a),(b)) #define chmax(a,b) a=max((a),(b)) typedef long long ll; typedef pairpint; typedef vectorvint; typedef vectorvpint; typedef pair P1; typedef pair P2; typedef pair PP; static const ll maxLL = (ll)1 << 62; const ll MOD=1000000007; const ll INF=1e18; int N,M; string s,t; int cnt1=0,cnt2=0; signed main() { cin>>N>>M; cin>>s>>t; rep(i,0,N){ if(s[i]=='A')cnt1++; } rep(i,0,M){ if(t[i]=='A')cnt2++; } cout<