#include <iostream>
#include <ctype.h>
#include <stdio.h>
usingnamespace std;
int main ()
{
cout << "Enter your grade: ";
char grade = cin.get();
grade = tolower (grade);
// put your logic here
system ("pause"); // remove if you don't use Visual Studio
return 0;
}