using System;
public class Program
{
public static void Main()
int a = 4;
Console.WriteLine($"Square root of {a} is {Math.Sqrt(a)}");
}