#include using namespace std; #define int long long #define rep(i,l,r) for(int i=(int)(l);i<(int)(r);i++) #define all(x) (x).begin(),(x).end() #define pb push_back templatebool chmax(T &a,T b){if(abool chmin(T &a,T b){if(a>b){a=b;return 1;}return 0;} typedef pair pii; typedef vector vi; typedef vector vvi; const int inf = 1LL<<60; const int mod = 1e9 + 7; const double eps = 1e-9; /*{ }*/ int solve(string s, string t) { int res = 0; rep(i, 0, s.size()){ int cnt = 0; if(s[i] == '('){ rep(j, i+1, s.size()){ if(s[j] == t[cnt%3]) cnt++; if(s[j] == ')' and cnt >= 3) res++; } } } return res; } signed main() { string s; cin >> s; cout << solve(s, "^^*") << " " << solve(s, "*^^") << endl; return 0; }