#include using namespace std; int main(){ int N,K; cin>>N>>K; string S; cin>>S; S="o"+S; int last=N-1; for(int i=N-1;i>=0;i--){ if(S[i]=='o') {last=i;break;} } int cnt=0; for(int i=0;i=0;i--){ if(last-i>K&&S[i]=='o') last=i; } cout<