Create a function called calculateGrade that accepts two arguments name and score.
* The function should calculate and print the name associated with the grade.
* Grade A if the score is greater than 85
* Grade B if the scrore is between 75 and 85 (inclusive)
* Grade C if the score is less than 75
*/