public static void Main()
Console.WriteLine("Въведи a = ");
int a = int.Parse(Console.ReadLine());
Console.WriteLine("Въведи b = ");
int b = int.Parse(Console.ReadLine());
int result = int.MinValue;
for (int i = a; i <= b ; i++)
Console.WriteLine("Най- голямото число делимо на 3 е "+ result);