def fact(n): if n==1: return 1 return n*fact(n-1) print(fact(5))
Standard input is empty
120
The brand new service which powers Ideone!
Widget for compiling and running the source code in a web browser!