N, K = list(map(int, input().split())) if K==1 : print(2**(N-K)-N) else: print(2**(N-K))