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