fork download
  1. i = 10
  2.  
  3. if(i ==10):
  4. if (i<15):
  5. print("not smaller than 15")
  6.  
  7.  
  8. if(i>12):
  9. print("smaller than 15")
  10. else:
  11. print("this is a number")
Success #stdin #stdout 0.08s 14008KB
stdin
Standard input is empty
stdout
not smaller than 15
this is a number