#include void solve() { char a, b, c; std::cin >> a >> b >> c; std::cout << (b == '?' ? 14 : b == '2' ? 4 : 1) << std::endl; } int main() { std::cin.tie(nullptr); std::ios::sync_with_stdio(false); solve(); return 0; }