Create a program that evaluates student scores and assigns letter grades according to the following grade curve rules:
score >= best_score - 10
score >= best_score - 20
score >= best_score - 30
score >= best_score - 40
Enter the number of students: 4Enter score for student 1: 78 [Enter]Enter score for student 2: 85 [Enter]Enter score for student 3: 92 [Enter]Enter score for student 4: 67 [Enter]
Student 1 score is 78 and grade is BStudent 2 score is 85 and grade is AStudent 3 score is 92 and grade is AStudent 4 score is 67 and grade is C