#include <stdio.
h>
int main() {
int score;
// Prompt the user for input
printf("Enter the student's score: ");
scanf("%d", &score);
// Determine the grade based on the score
if (score >= 90) {
printf("Grade: Excellent\n");
else if (score >= 80) {
printf("Grade: Very Good\n");
else if (score >= 70) {
printf("Grade: Good\n");
else if (score >= 50) {
printf("Grade: Passed\n");
else {
printf("Grade: Failed\n");
}
return 0;