#include #define rep(i, n) for (int i = 0; i < (int)(n); i++) #define all(x) (x).begin(), (x).end() typedef long long ll; using namespace std; int main(void) { string S; cin >> S; stack s; int ans = 0; bool avail = false; rep(i, S.size()) { if (S[i] == '<') { s.push(i); avail = true; } else if (S[i] == '>') { if (!avail) { continue; } if (!s.empty()) { int j = s.top(); s.pop(); if (i - j == 1) { avail = false; continue; } else { ans = max(ans, i - j + 1); } } else { avail = false; } } } cout << S.size() - ans << endl; return 0; }