Help for this page
my $bigNumber = 6**25; printf ("%.f", $bigNumber);
use Math::BigInt; my $bigNumber = Math::BigInt->new(6**25); print "$bigNumber";