in Nim 2.0 ```nim import bigints var x:BigInt = 1.initBigInt for i in 1 .. 99999: x *= i.initBigInt echo x ``` takes about 19 seconds in my computer, but Python 3.10 and Julia 1.6.7 only takes less than 2 seconds...