#include #include #include #include #include using namespace std; int main() { int n; std::cin >> n; int h = 0; int no_valles = 0; for (int i = 0; i < n; i++) { char c; std::cin >> c; if (c == 'U') h++; else h--; if (h == 0 && c == 'U') no_valles++; } std::cout << no_valles; return 0; }