Modular Exponentiation by uru

package
main
import."bignum"func
main(){a,i:=Nat(2),0;for;i<=99;i++{a=a.Pow(10).Mod(Nat(10).Pow(1e3))}print(a.String())}

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

download

return to the top page