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