public static void Main()
const double standard_length = 2.25;
Console.WriteLine("Hello and welcome to the garden fence calculator");
Console.WriteLine("What is the width of your garden");
width = double.Parse(Console.ReadLine());
Console.WriteLine("What is the length of your garden");
length = double.Parse(Console.ReadLine());
panel = (Math.Round(area / standard_length));
Console.WriteLine("You will need {0} panels in your garden fence", panel);