public static void Main()
string restart = "This value can be anything.";
while (restart != "q" && restart != "Q")
Console.WriteLine("Please enter the amount of Fibonacci numbers you would like to be outputted");
string y = Console.ReadLine();
if(ulong.TryParse(y, out n))
{ Console.Write("The first " + n + " Fibonacci numbers are: 1, 1");
Console.Write(", " + Fn);
Console.WriteLine("Please enter a valid number");
Console.WriteLine(" Would you like to run again? Please press q to quit.");
restart = Console.ReadLine();