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+ " to the power of " +y+ " = " + Math.Pow(x, y));
Console.WriteLine(+y+ " to the power of " +x+ " = " + Math.Pow(y, x));
Console.WriteLine("The absolute value of " +x+ " is " + Math.Abs(x));
Console.WriteLine("The absolute value of " +y+ " is " + Math.Abs(y));
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 max of " +x+ " and " +y+ " is " + Math.Max(x, y));
Console.WriteLine("The min of " +x+ " and " +y+ " is " + Math.Min(x, y));
Console.WriteLine(+x+ " rounded to the nearest whole number is " + Math.Round(x));
Console.WriteLine(+y+ " rounded to the nearest whole number is " + Math.Round(y));