using System;
public class Program
{
public static void Main()
/*
Write a program that recieves an integer from the user by the method Console.ReadLine()
Transform the numeric grade into a letter that represents it.
*/
//WRITE YOUR CODE HERE
}
public static int getGrade(){
int grade = int.Parse(Console.ReadLine());
return grade;