DECimal number to BINary by chocobi

long long i,n=1LL<<60;main(){for(scanf("%lld",&i);n;n/=2)n<=i&&putchar(i&n?49:48);}

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

download

return to the top page