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