fork download
  1. def func( n ):
  2.  
  3. def bin( n ):
  4.  
  5. if n != 0 :
  6.  
  7. bin( n // 2 )
  8.  
  9. print( n % 2, end = "" )
  10.  
  11. bin( n )
  12.  
  13. func(8)
  14.  
  15.  
Success #stdin #stdout 0.03s 9596KB
stdin
Standard input is empty
stdout
01000