#include using namespace std; int main() { int n; string s; cin >> n >> s; int ans = 0; for (int i = 0; i < n; i++) { for (int j = 1; j < n; j++) { if (i + j + j < n) { if (s[i] == 'U' && s[i + j] == 'M' && s[i + j + j] == 'G') { ans++; } } } } cout << ans << endl; return 0; }