#include using namespace std; int main(){ string S; cin >> S; int N = S.size(); int L = 0; int R = 0; for (int i = 0; i < N - 1; i++){ if (S.substr(i, 2) == "^*"){ L++; } if (S.substr(i, 2) == "*^"){ R++; } } cout << L << ' ' << R << endl; }