// yukicoder: 1534 おなかがいたい // 2021.8.14 #include #include char S[200005]; int main() { char *s; int c = 0; scanf("%s", s = S); while (*s) { if (!memcmp(s, "pon", 3)) s += 2, c++; else if (!memcmp(s, "pain", 4)) { printf("%d\n", c >= 2? c-1: -1); return 0; } ++s; } puts("-1"); return 0; }