#include using namespace std; using ll=long long; int cnt(string S){ int k=0,res=0; for(auto s:S){ if(s=='o')k++; else{ res=max(res,k); k=0; } } return max(res,k); } int main() { cin.tie(nullptr); ios::sync_with_stdio(false); int D; cin>>D; string S,T; cin>>S>>T; for(int i=0;i<14;i++){ S="x"+S; T=T+"x"; } S+=T; int an=cnt(S); if(D!=0)for(int i=0;i