public static void Main()
Console.WriteLine("Enter three numbers");
int a= Convert.ToInt32(Console.ReadLine());
int b= Convert.ToInt32(Console.ReadLine());
int c= Convert.ToInt32(Console.ReadLine());
Console.WriteLine("A is Greater than B by"+(a-b)+"and"+"A is grater than C by"+(a-c)+"so A is greater");
Console.WriteLine("B is Greater than A by"+(b-a)+"and"+"B is grater than C by"+(b-c)+"so B is greater");
Console.WriteLine("C is Greater than A by"+(c-a)+"and"+"C is grater than B by"+(c-b)+"so C is greater");