git add -A

This commit is contained in:
danogentili 2017-03-25 17:43:50 +03:00
parent cdc7a148de
commit 8147bf90c0

12
a.php
View File

@ -1,12 +0,0 @@
<?php
require 'vendor/autoload.php';
$two = new \phpseclib\Math\BigInteger(2);
$t = new \phpseclib\Math\BigInteger(2);
$pow = 1984;
for ($x = 0; $x < ($pow-1); $x++) {
$two = $two->multiply($t);
var_dump($x);
}
echo($two->__toString().PHP_EOL);