DECimal number to BINary by 51b(msk,inaniwa)

main(long long n){scanf("%Ld",&n);n&&main(n/2)+putchar(n%2+48);}

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

download

return to the top page