public static void Main()
Console.WriteLine(" Enter length");
string length = Console.ReadLine();
bool success = int.TryParse(length, out length1);
Console.WriteLine(" Enter width");
string width = Console.ReadLine();
bool success1 = int.TryParse(width, out width1);
int squareFeet = width1 * length1;
Console.WriteLine("your fee is $25 and your fee is $500");
Console.WriteLine("your fee is $35 and your total is $700");
Console.WriteLine("your fee is %50 and your total is $1000");
Console.WriteLine("enter a real integer");