a = int(input())
b = int(input())

while a!=0:
    sa = a
    a = (a&b)<<1
    b = sa^b

print(b)