using System.Collections.Generic;
using System.Threading.Tasks;
static void Main(string[] args)
Console.Write("Nhập một số: ");
double number = double.Parse(Console.ReadLine());
double squareRoot = Math.Sqrt(number);
Console.WriteLine("Căn bậc hai của {0} là {1}", number, squareRoot);
Console.WriteLine("Số bạn nhập không phải là số dương");