10 lines
144 B
Python
10 lines
144 B
Python
def factorial(n):
|
|
if n == 0 or n == 1:
|
|
return 1
|
|
else:
|
|
return n * factorial(n - 1)
|
|
|
|
|
|
# Example usage
|
|
print(factorial(5))
|