public static void Main()
int pricepersquareft = 5;
int totalprice = ((4*4)*5);
Console.WriteLine("Enter the length of the carpet: ");
int length = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("Enter the width of the carpet: ");
int width = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("The price per square foot of carpet is "+"$"+pricepersquareft);
Console.WriteLine("The total cost of carpeting the room "+"$"+totalprice);