diff --git a/src/01_bignum.py b/src/01_bignum.py index c020928d63..200d632d6c 100644 --- a/src/01_bignum.py +++ b/src/01_bignum.py @@ -1,4 +1,6 @@ # Print out 2 to the 65536 power # (try doing the same thing in the JS console and see what it outputs) -# YOUR CODE HERE \ No newline at end of file +# YOUR CODE HERE +import math +print(math.pow(2,65536))