public static void Main()
Console.WriteLine("Please Enter your first number:");
double x = double.Parse(Console.ReadLine());
Console.WriteLine("Please Enter your second number:");
double y = double.Parse(Console.ReadLine());
Console.WriteLine("x^y =" + Math.Pow(x, y));
Console.WriteLine("y^x =" + Math.Pow(y,x));
Console.WriteLine("The Square root of x is=" + Math.Sqrt(x));
Console.WriteLine("The Square root of y is=" + Math.Sqrt(y));
Console.WriteLine("The Absoulte of x is=" + Math.Abs(x));
Console.WriteLine("The Absoulte of y is=" + Math.Abs(y));
Console.WriteLine("The Maximun of x and y is=" + Math.Max(x,y));
Console.WriteLine("The Minimuim of x and y is=" + Math.Min(x,y));
Console.WriteLine(" x rounded is =" + Math.Round(x));
Console.WriteLine("y rounded is =" + Math.Round(y));