d1, d2 = map(int,input().split()) if d1 > d2: print(0) elif d2/4 > d1: print(0) else: print(8)