0
why print(2**2**32) fails to work?
2 Respuestas
+ 7
its printing correct
In print statement you wrote
print((2**2)**32)
Here first bracket will be solve so
print(4**32)
If u will multiply 4 to the power 32 times u will get result
4*4*4........*4
0
It exceeding SoloLearn server time limit only...
Try with values below 20 instead of 32.