using System;
public class Program
{
public static void Main()
// declaring length and width and assigning the values provided in question
int length = 37;
int width = 22;
// changing the values of length and width
length = 12;
width = 32;
// calculating square footage and storing it in a variable named "squareFootage"
int squareFootage = length * width;
// outputting the square footage
Console.WriteLine("The square footage of your house is: " + squareFootage);
}