def silnia_rek(n): if n == 0 or n == 1: return 1 else: return n * silnia_rek(n - 1)
1
Standard output is empty
The brand new service which powers Ideone!
Widget for compiling and running the source code in a web browser!