# Write a Python program that computes the factorial of a number entered by the user using a loop.
# Hint: Factorial of n (n!) = n × (n-1) × (n-2) × ... × 1
user_number = int(input('Enter a number: '))
product = 1
for i in range(user_number, 1, -1):
product *= i
print(f'Factorial: {product}')
