= Python Challenge -- Level 0 -- Solution = ==== Code ==== {{{ #!d import tango.io.Stdout; import tango.math.core; void main () { Stdout.print(pow(2.0L, 38u)).flush(); } }}} ==== Explanation ==== {{{ #!d Stdout.print(pow(2.0L, 38u)).flush(); }}} tango.math.pow is used to raise an arbitrary floating point number to an arbitrary power. This example does 2^38^. The result is printed to the screen.