#include using namespace std; int main(){ cin.tie(0); ios::sync_with_stdio(false); string S; long long ans = 1; for (int i = 0; i < 3; ++i){ cin >> S; if (S == "NONE"){ ans <<= 8; }else{ int tmp = 16 - (S.size() + 1)/2; ans *= tmp * tmp; } } cout << ans << endl; return 0; }