using System;
public class Program
{
public static void Main()
int length = 30;
int width = 25;
int area;
area = length * width;
Console.WriteLine("The area of a house with length of {0} feet", length);
Console.WriteLine("and width of {0} feet is {1} square feet. \n\n\n", width, area);
Console.WriteLine("Please enter a number");
Console.ReadLine();
}