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