def kaijou(n): if n==1: return 1 else: return n*kaijou(n-1) f=input() print(kaijou(int(f)))