Help me in solving RECUR03 problem

My issue

answer

My code

def Factorial(n):
    # Write your code here
    
    n = int(input())
print(Factorial(n))

Learning course: Design and Analysis of Algorithms
Problem Link: Factorial in Design and Analysis of Algorithms