public static void Main()
double width, height, woodLength, glassArea;
string widthString, heightString;
widthString = Console.ReadLine();
width = double.Parse(widthString);
heightString = Console.ReadLine();
height = double.Parse(heightString);
woodLength = 2 * (width + height) * 3.25;
glassArea = 2 * (width * height);
Console.WriteLine("The length of the peice of wood is " + woodLength + " feet");
Console.WriteLine("The area of the peice of glass is " + glassArea + " square metres.");