public static void Main()
Console.WriteLine("Въведи пет числа");
Console.WriteLine("Първо число");
int a = Int32.Parse(Console.ReadLine());
Console.WriteLine("Второ число");
int b = Int32.Parse(Console.ReadLine());
Console.WriteLine("Трето число");
int c = Int32.Parse(Console.ReadLine());
Console.WriteLine("Четвърто число");
int d = Int32.Parse(Console.ReadLine());
Console.WriteLine("Пето число");
int e = Int32.Parse(Console.ReadLine());
Console.WriteLine("{0} е най-голямото число.", a);