n, k = map(int, input().split()) ans = (2**n) // (2**k) if (2**n) % (2**k) != 0 and ans > 0: ans -= 1 print(ans)