#include using namespace std; int main() { int n; string s; cin >> n >> s; string t = ""; int i = 0; while (i < n) { if (s[i] == 'C') { if (i + 2 < n && s[i + 1] == 'P' && s[i + 2] == 'C') { t += '!'; i += 3; } else { t += s[i]; i++; } } else { t += s[i]; i++; } } int ans = 0; i = 0; while (i < (int)t.size()) { bool ok = false; if (t[i] == '!') { if (i + 2 < n) { if ((t[i + 1] == 'T' && t[i + 2] == 'F') || (t[i + 1] == 'T' && t[i + 2] == '!')) { ok = true; } } } if (ok) { ans++; i += 3; } else { i++; } } cout << ans << endl; }