#include #include #include #include #include #include #include #include #include typedef long double ld; typedef long long ll; const ll INF = (ll)1e18 + 1; const ll MOD = 1e9 + 7; // Split namespace util { std::vector< std::string > split(std::string s, char delimiter) { std::vector< std::string > vs; std::string sub; for (auto c : s) { if (c == delimiter) vs.push_back(sub), sub.clear(); else sub += c; } vs.push_back(sub); return vs; } } // namespace util // Minimum, Maximum template T minimum(T head, T tail) { return std::min(head, tail); } template H minimum(H head, T... tail) { return std::min(head, minimum(tail...)); } template T maximum(T head, T tail) { return std::max(head, tail); } template H maximum(H head, T... tail) { return std::max(head, maximum(tail...)); } // Output template std::ostream& operator << (std::ostream& os, std::pair p) { return os << "(" << p.first << " " << p.second << ")"; } template std::ostream& operator << (std::ostream& os, std::vector< T > v) { for (ll i = 0; i < (ll)v.size(); i++){ os << " [" << i << "]" << v[i]; if (i % 10 == 9) os << std::endl; } //os << v[0]; for (ll i = 1; i < (ll)v.size(); i++){ os << " " << v[i]; } return os; } template std::ostream& operator << (std::ostream& os, std::map< T, S > m) { ll i = 0; for (auto p : m){ os << " [" << i << "]" << p.first << "->" << p.second; i++;} return os; } void print(){ std::cout << std::endl; } template void print(H head) { std::cout << head << std::endl; } template void print(H head, T... tail){ std::cout << head << " ", print(tail...); } int main() { std::string S; std::cin >> S; std::string a = "(^^*)"; std::string b = "(*^^)"; ll cnta = 0LL; std::string::size_type pos = S.find(a); while (pos != std::string::npos) { cnta++; pos = S.find(a, pos + a.size()); } ll cntb = 0LL; std::string::size_type pos2 = S.find(b); while (pos2 != std::string::npos) { cntb++; pos2 = S.find(b, pos2 + b.size()); } print(cnta, cntb); return 0; }