#include #define rep(i,n) for(int i = 0; i < (n); i++) using namespace std; typedef long long ll; int main(){ cin.tie(0); ios::sync_with_stdio(0); string S; cin >> S; string T = "pain"; int N = int(S.size()); int pos = -1; for(int i = 0; i < N; i++) if(S.substr(i, 4) == T) { pos = i; break; } if(pos == -1){ cout << -1 << endl; return 0; } string U = "pon"; int cnt = 0; for(int i = 0; i < pos; i++) if(S.substr(i, 3) == U) cnt++; cout << (cnt <= 1 ? -1 : cnt - 1) << endl; }