# This has the product of the numbers 1 to 100

prod = 1
for x in range(1, 101):
    prod = prod * x

print( "100! = ", prod )

