public static void Main()
Console.WriteLine("How many square roots do you want to output?");
root = Console.ReadLine();
if (int.TryParse(root, out number))
Console.WriteLine("The square root of " + i + " is " + Math.Sqrt(i) + ".");
Console.WriteLine("Please input a proper number");