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 the given number is:", factorial)
Learning course: Learn Python
Problem Link: CodeChef: Practical coding for everyone