D1 ,D2 = map(int, input().split()) if D1>D2: print(0) elif D1==D2: print(4) elif 2*D1**2>D2**2: print(8) elif 2*D1**2==D2**2: print(4) else: print(0)