Bigger power of two by zombie

f=lambda n:n<1or 2*f(n/2)
while 1:print f(input())

Note that non-ascii characters in the above source code will be escaped (such as \x9f).

download

return to the top page