5 lines
87 B
Perl
5 lines
87 B
Perl
|
use Math::BigInt;
|
||
|
|
||
|
$bi = Math::BigInt->new('111111111111111111');
|
||
|
|
||
|
print $bi * $bi;
|