Run ID:87574
提交时间:2024-08-10 17:28:54
def factorial(n): if n == 0 or n == 1: return 1 return n * factorial(n+1) n = int(input()) print(factorial(n))