public static void Main()
Console.WriteLine("Введіть a: ");
int a = int.Parse(Console.ReadLine());
Console.WriteLine("Введіть b: ");
int b = int.Parse(Console.ReadLine());
if(a>b ) Console.WriteLine("Більше число " +a) ; else
Console.WriteLine("Більше число " +b ) ;