N, K = input().strip().split(' ') N, K = int(N), int(K) print(2**N // 2**K)