fork download
  1. #include <stdio.h>
  2.  
  3. int main(void)
  4. {
  5. int score; // your code goes here
  6. scanf ("%d", &score);
  7. if (score >= 65)
  8. {
  9. printf ("\nNice one, dick\n");
  10. }
  11. else if (score >= 40)
  12. {
  13. printf ("\nOkay...\n");
  14. }
  15. else
  16. {
  17. printf ("\nNot nice at all, dick\n");
  18. }
  19. return 0;
  20. }
  21.  
Success #stdin #stdout 0s 5320KB
stdin
50
stdout
Okay...