fork download
  1. #include <stdio.h>
  2.  
  3. int main() {
  4. int x;
  5. scanf("%d",&x);
  6. if (x>=90)
  7. printf("S");
  8. else if (x>=80)
  9. printf("A");
  10. else if (x>=60)
  11. printf("B");
  12. else
  13. printf("D");
  14. return 0;
  15. }
  16.  
Success #stdin #stdout 0s 5296KB
stdin
10000
stdout
S