1def fact(n)
2  if(n > 1)
3    n * fact(n-1)
4  else
5    1
6  end
7end
8
9100.times {
10  fact(5000)
11}
12