#include using namespace std; #ifdef LOCAL #include "settings/debug.cpp" #define _GLIBCXX_DEBUG #else #define Debug(...) void(0) #endif using ll = long long; #define rep(i, n) for (int i = 0; i < (n); ++i) int main() { int d1, d2; cin >> d1 >> d2; if (d1 < d2 && d1 * 2 > d2) { cout << 8 << endl; } else if (d1 == d2 || d1 * 2 == d2) { cout << 4 << endl; } else { cout << 0 << endl; } return 0; }