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