Help me in solving PYTH101 problem

My issue

My code

# Debug the code below to output the factiorial of a user defined input n

n = int(input())

i = 1
factorial = 1

while i <= n:
    factorial = 1 * factorial
    i = i + 1
    
print("The factorial of", factorial)

Learning course: Learn Python
Problem Link: CodeChef: Practical coding for everyone

@sanjaysk2005 - suppose i = 5 - what will the value of factorial be if you run the loop above?