using System;
namespace Excellent_Result
{
internal class Program
{
static void Main(string[] args)
{
double evaluation = double.Parse(Console.ReadLine());
double honor = 5.50;
if (evaluation >= honor)
{
Console.WriteLine("Excellent!");
}
}
}
}
For further actions, you may consider blocking this person and/or reporting abuse
Top comments (0)