From 74ebe2b5deb51bbe75e1378015af59f6fba33ac9 Mon Sep 17 00:00:00 2001 From: Sushant Kumar <151925978+sushantkumar143@users.noreply.github.com> Date: Thu, 5 Jun 2025 19:51:41 +0530 Subject: [PATCH] Update 01_bignum.py But it gives out of range error --- src/01_bignum.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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))