Factorial1000 by macik

import std.bigint,std.stdio;void main(){BigInt x=1;foreach(n;1..1001)x*=n;write(x);}

Note that non-ascii characters in the above source code will be escaped (such as \x9f).

download

return to the top page