using System; namespace ConsoleApplication1 { class Program { static void Main(string[] args) { // example 1 int n = 25; Console.WriteLine(Math.Sqrt(n)); // example 2 int a = 81; Console.WriteLine(Math.Pow(a, 0.5)); } } }