Help me in solving PYTH101 problem

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

Bro the code is perfect but the thing is they will compare the output of urs with the expected output so the words in the print should be exact like bob,rob should be in capital letter