void
dectobin(
int
n){
in = n/2;
out = n%2;
if
(n == 0){
return
;
}
dectobin( in);
printf
(
"%d"
,out);