d1, d2 = map(int, input().split()) x = 0 if d1 == d2 or d1*2 == d2: x = 4 elif d1 < d2 < d1*2: x = 8 print(x)