RosettaCodeData/Task/Long-multiplication/D/long-multiplication-1.d

6 lines
97 B
D
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
void main() {
import std.stdio, std.bigint;
writeln(2.BigInt ^^ 64 * 2.BigInt ^^ 64);
}