#include using namespace std; #define int long long using ll=long long; using vi=vector; using vl=vector; using pii=pair; using pll=pair; #define ITR(i,c) for(auto i=begin(c);i!=end(c);++i) #define FORE(x,c) for(auto &x:c) #define FOR(i,a,n) for(int i=a,i##_len=(int)(n);i=0;--i) #define ALL(c) begin(c),end(c) #define RALL(c) rbegin(c),rend(c) // c++14 #define SZ(c) ((int)c.size()) #define EXIST(c,x) (c.find(x)!=end(c)) #define OUTOFRANGE(y,x,h,w) (y<0||x<0||y>=h||x>=w) #define dump(...) const int DX[9]={0,1,0,-1,1,1,-1,-1,0},DY[9]={-1,0,1,0,-1,1,1,-1,0}; #define INF (1001001001) #define INFLL (1001001001001001001ll) template ostream& operator << (ostream &os,const vector &v) { ITR(i,v) os << *i << (i==end(v)-1 ? "" : "\n"); return os; } template istream& operator >> (istream &is,vector &v) { ITR(i,v) is >> * i; return is; } template istream& operator >> (istream &is, pair &p) { is >> p.first >> p.second; return is; } templatebool chmax(T &a,const T &b){if(abool chmin(T &a,const T &b){if(b>s; int l=0,r=0; string L="(^^*)"; string R="(*^^)"; REP(i,SZ(s)) { if(s.substr(i,5)==L) l++; if(s.substr(i,5)==R) r++; i+=4; } cout<