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