#include using namespace std; int main() { string s, t; bool si = false; cin >> s; t = ""; for (auto i : s) { if (!(si && i == '-')) { t += i; } si = (i == 'i' || (si && i == '-')) ? true : false; } int i = 0, cnt = 0; while ((i = t.find("min", i) + 3) > 2) { if (t.find("min", i) == i || i >= t.size()) { ++cnt; } } cout << cnt << endl; return 0; }