#include #define rep(i, n) for (int i = 0; i < n; ++i) using ll = long long; using namespace std; const int INF = 1e9; int main() { int d1, d2; cin >> d1 >> d2; if (d1 == d2 || 2 * d1 == d2) cout << 4; else if (d1 < d2 && d2 < 2 * d1) cout << 8; else cout << 0; cout << endl; return 0; }