sum = 1;n = int(input("Please input number n:"))for i in range(1,n+1):sum = sum*i;if i<n:print(i,end='')print("*",end = '')print(i,"=",sum)