#include <bits/stdc++.h>
using namespace std;
int main() {
int n;
string s;
cin >> n >> s;
int ret = 0, cnt = 0;
for(int i = 0; i < n; i++) {
if(s[i] == 'x') {
cnt++;
if(cnt == 3) {
ret++;
cnt--;
}
} else {
cnt = 0;
}
}
cout << ret << endl;
return 0;
}