using System; public class Test { public static void Main() { Random a = new Random(44448); int i1 = a.Next(65, 90); Console.WriteLine(i1); } }