1. using System;
  2. class GlazerCalc
  3. {
  4. static void Main()
  5. {
  6. double width, height,
  7. woodLength, glassArea; string widthString, heightString; widthString =
  8. Console.ReadLine(); width = double.Parse(widthString); heightString =
  9. Console.ReadLine(); height = double.Parse(heightString); woodLength = 2 * (width
  10. + height) * 3.25; glassArea = 2 * (width * height); Console.WriteLine(
  11. "The length of the wood is " + woodLength + " feet"); Console.WriteLine(
  12. "The area of the class is " + glassArea + " square metres");
  13. //Console.WriteLine("Press any key too continue...");
  14. Console.ReadLine();
  15. }
  16. }