#include //cin, cout #include //vector #include //sort,min,max,count #include //string,getline, to_string #include //abs(int) #include //swap, pair #include //deque #include //INT_MAX #include //bitset #include //sqrt, ceil. M_PI, pow, sin #include //fixed #include //setprecision using namespace std; int main() { string S; cin >> S; int L = 0, R = 0; for (unsigned int i = 0; i < S.length(); i++) { if (S[i] == '*') { if (S[i + 1] == ')') { L++; } else { R++; } } } cout << L << " " << R << endl; return 0; }