6 lines
97 B
D
6 lines
97 B
D
|
|
void main() {
|
||
|
|
import std.stdio, std.bigint;
|
||
|
|
|
||
|
|
writeln(2.BigInt ^^ 64 * 2.BigInt ^^ 64);
|
||
|
|
}
|