using System;
public class Program
{
public static void Main()
Console.WriteLine($"Math.Pow(2, 10) = {Math.Pow(2, 10)}");
Console.WriteLine($"Math.Sqrt(1024) = {Math.Sqrt(1024)}");
Console.WriteLine($"Math.Round(10.12) = {Math.Round(10.12)}");
}