using System;
public class Program
{
public static void Main()
Console.WriteLine("Enter your marks");
int x = Console.ReadLine();
if (x = < 90)
Console.WriteLine("You are eligible to be the school captain");
else
(x > 90)Console.WriteLine("You are not eligible to be the school captain");
}