fork download
  1. N = 10
  2.  
  3. if N<10:
  4. print("A")
  5. if N>12:
  6. print("B")
  7. elif N>10:
  8. print("C")
  9. else:
  10. print("D")
  11.  
  12.  
  13.  
Success #stdin #stdout 0.03s 9680KB
stdin
8
stdout
D