a,b = map(int,input().split()) for i in range(29,-1,-1): if pow(2,i)-1 < min(a,b): print(pow(2,i)-1) exit()