using System.Collections.Generic;
using System.Threading.Tasks;
static void Main(string[] args)
Console.Write("Width: ");
double width = Double.Parse(Console.ReadLine());
Console.Write("Length: ");
double length = Double.Parse(Console.ReadLine());
Console.WriteLine($"Total Area = {CalculateArea(width,length)}");
public static double CalculateArea(double length, double width)