using System;
using static System.Console;
var length = 12;
var width = 14;
var totalArea = 0;
totalArea = length * width;
Console.WriteLine($"The total area of the plot of land is : {totalArea} inches");