public static void Main()
Console.WriteLine("C# Square Footage Calculator");
Console.WriteLine("Round up to the nearest whole number for the first side then enter it into the console");
string input = Console.ReadLine();
int result = Int32.Parse(input);
Console.WriteLine("Round up to the nearest whole number for the second side then enter it into the console");
string input2 = Console.ReadLine();
int result2 = Int32.Parse(input2);
Console.WriteLine("your square footage is...");
Console.WriteLine(result * result2);