def f(n,m): if m==0: return 1 else: return (n-m+1)*f(n,m-1) n,m=map(int,input().split()) print(f(n,m))