#include #include #include #include using namespace std; int main() { std::cin.tie(0); std::ios::sync_with_stdio(false); string S; cin >> S; int l=0, r=0; int i=0; while(i+4 < S.size()){ if(S.at(i) == '#') break; if(S.at(i+1) == '*') r++; else l++; i += 5; } cout << l << " " << r << endl; return 0; }