fork download
  1. a=0
  2. if a>0: # warunek 1
  3. print('dodatnia')
  4. elif a>0: #warunek 2
  5. print('ujemna')
  6. else:
  7. print('zero')
  8.  
  9.  
  10.  
  11.  
Success #stdin #stdout 0.12s 14112KB
stdin
Standard input is empty
stdout
zero