a,b=map(int, input().split()) ans=0 for i in range(1000): if a|i==b: ans+=1 print(ans)