Skip to content

Instantly share code, notes, and snippets.

@DeviaVir
Created April 17, 2017 09:48
Show Gist options
  • Save DeviaVir/6b81bfbb28cba63fdc2f74666fea8a30 to your computer and use it in GitHub Desktop.
Save DeviaVir/6b81bfbb28cba63fdc2f74666fea8a30 to your computer and use it in GitHub Desktop.
def factorial(n):
if n == 0:
return 1
else:
return n * factorial(n-1)
def main():
i = raw_input()
try:
i = int(i)
except:
return 1
return factorial(i)
print(main())
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment