#include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include //#include const double EPS = (1e-10); using namespace std; using Int = long long; //using namespace boost::multiprecision; const Int MOD = 1000000007; Int mod_pow(Int x, Int n) { Int res = 1; while(n > 0) { if(n & 1) res = (res * x) % MOD; //ビット演算(最下位ビットが1のとき) x = (x * x) % MOD; n >>= 1; //右シフト(n = n >> 1) } return res; } template T gcd(T a, T b) { return b != 0 ? gcd(b, a % b) : a; } template T lcm(T a, T b) { return a * b / gcd(a, b); } int main(){ vector ss; for (int i = 0; i < 3; i++){ string n; cin >> n; ss.push_back(n); } Int ans = 1; for (int i = 0; i < 3; i++){ if (ss[i] != "NONE"){ ans *= (16 - (ss[i].length()+1)/2); ans *= (16 - (ss[i].length()+1)/2); }else{ ans *= 16; ans *= 16; } } cout << ans << endl; }