DECimal number to BINary by primo

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

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

download

return to the top page