fork download
  1. grade = 90
  2.  
  3. if grade <= 60:
  4. print('E')
  5. elif grade <= 70:
  6. print('D')
  7. elif grade <= 80:
  8. print('C')
  9. elif grade <= 90:
  10. print('B')
  11. else:
  12. print('A')
  13.  
Success #stdin #stdout 0.03s 9596KB
stdin
8
stdout
B