DECimal number to BINary by hallvabo

b=lambda n:n and b(n/2)*10+n%2;print b(input())

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

download

return to the top page