Help for this page

Select Code to Download


  1. or download this
    my $bigNumber = 6**25;
    printf ("%.f", $bigNumber);
    
  2. or download this
    use Math::BigInt;
    my $bigNumber = Math::BigInt->new(6**25);
    print "$bigNumber";