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