fork download
  1. grade =60
  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.  
  14.  
  15.  
  16.  
Success #stdin #stdout 0.03s 9600KB
stdin
8
stdout
D