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

3 lines
57 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
[BigInt]$n = [Math]::Pow(2,64)
[BigInt]::Multiply($n,$n)