#include void solve() { int d1, d2; std::cin >> d1 >> d2; std::cout << (d2 > d1 * 2 ? 0 : d2 == d1 * 2 ? 1 : 2) * 4 << std::endl; } int main() { std::cin.tie(nullptr); std::ios::sync_with_stdio(false); solve(); return 0; }