N,K = map(int,input().split()) ans = pow(2,N - K) if K == 1: ans -= N print(ans)