RosettaCodeData/Task/Long-multiplication/PowerShell/long-multiplication-2.psh

3 lines
57 B
Text
Raw Permalink Normal View History

2015-11-18 06:14:39 +00:00
[BigInt]$n = [Math]::Pow(2,64)
[BigInt]::Multiply($n,$n)