>>> n = int(input()) 3 >>> def fact(n): if n<3: return n return n*fact(n-1) >>> fact(n) 6 >>> fact(5) 120 >>> fact(6) 720 >>>