def mys(m): if m == 1: return(1) else: return(m*mys(m-1))
I encountered this function on the web. It\'s above my level so can you gu