#include using namespace std; const string T = "min"; int main() { ios::sync_with_stdio(false); cin.tie(0); string S; cin >> S; int res = 0, p = 0; for (int i = 0; i < (int)S.size(); i++) { if (S[i] == T[p]) p++; if (p == (int)T.size()) { p = 0; res++; } } cout << res << '\n'; return 0; }