using System;
public class Program
{
public static void Main()
Console.WriteLine("Резултати от тест по английски");
Console.WriteLine("Въведи получените точки");
var точки = int.Parse(Console.ReadLine());
if (точки>=89)
Console.WriteLine("A");
}
else if (точки>=79)
{Console.WriteLine("B");
else if (точки>=69)
Console.WriteLine("C");
else if (точки>=59)
Console.WriteLine("D");
else
Console.WriteLine("F");