#include using namespace std; int main() { int N; string S; cin >> N >> S; int ans = 0; for (int i = 0; i < N - 2; i++) { for (int j = i + 1; j < N - 1; j++) { if (j * 2 - i >= N) break; if (S.at(i) == 'U' && S.at(j) == 'M' && S.at(j * 2 - i) == 'G') ans++; } } cout << ans << endl; }