You are viewing a single comment's thread. Return to all comments →
def factorial(x): if x == 1: return 1 else: return x * factorial(x-1) print(factorial(int(input())))
Seems like cookies are disabled on this browser, please enable them to open this website
Security Encryption Scheme
You are viewing a single comment's thread. Return to all comments →