I want to give input range between 0 to 100 in console c#
int eng, tel, hin, mat, sci, soc,j; float total, average; float percentage; Console.WriteLine("MARKS OF THE STUDENT"); Console.Write("Marks in English :"); eng = Convert.ToInt32(Console.ReadLine()); Console.Write("Marks in Telugu :"); tel = Convert.ToInt32(Console.ReadLine()); Console.Write("Marks in Hindi :"); hin = Convert.ToInt32(Console.ReadLine()); Console.Write("Marks in Maths :"); mat = Convert.ToInt32(Console.ReadLine()); Console.Write("Marks in Science :"); sci = Convert.ToInt32(Console.ReadLine()); Console.Write("Marks in Social :"); soc = Convert.ToInt32(Console.ReadLine()); total = eng + tel + hin + mat + sci + soc; average = total / 6; percentage = (total*100)/600; decimal avg1 =