using System;
public class Program
{
public static void Main()
int length, width, area;
Console.Write("input Length of rectangle- ");
length = int.Parse(Console.ReadLine());
Console.Write("input width of rectangle- ");
width = int.Parse(Console.ReadLine());
area = length * width;
Console.WriteLine("Area = " + area);
}