fork(1) download
  1. d(x){x&&(d(x/2),printf("%d",x%2));}
  2. main(a){scanf("%d",&a);d(a);return 0;}
Success #stdin #stdout 0.01s 1724KB
stdin
5
stdout
101