def h(n,x): if n == 0: return 1 if n == 1: return 2 return 2 * x * h(n-1,x) - 2*(n-1) * h(n-2,x) n,x = map(int,input().split()) print(h(n,x))