using System;
using static System.Console;
int LandLength;
LandLength = 225;
int LandWidth;
LandWidth = 364;
double areaofLand;
areaofLand = LandLength * LandWidth;
WriteLine ($"The area of the plot of land is: {areaofLand}");