Write a function grade_score(score) that receives a numeric score (0‑100) and returns the corresponding letter grade:
- A for scores 90‑100
- B for scores 80‑89
- C for scores 70‑79
- D for scores 60‑69
- F for any score below 60
Example: grade_score(87) should return 'B'.