My issue
i complete my code but it says Time limit exceeded what can i do
My code
# Debug the code below to output the factiorial of a user defined input n
num = int(input())
i = 1
factorial = 1
while i <= num+1:
factorial *= 1
print("The factorial of the given number is:", factorial)
Learning course: Learn Python
Problem Link: CodeChef: Practical coding for everyone