public static void Main()
Console.WriteLine("enter the number of questions that the student managed to answer right");
int ranswers = int.Parse(Console.ReadLine());
int first10q = ranswers * 8;
int after10q = (ranswers - 10) * 5 + 10*8;
Console.WriteLine("the student got "+first10q );
Console.WriteLine("the student got "+after10q);