public static void Main()
double length,width, area, scope;
Console.Write("הכנס אורך צלע מלבן");
length = double.Parse(Console.ReadLine());
Console.Write("הכנס רוחב צלע מלבן");
width = double.Parse(Console.ReadLine());
scope = (length * 2) + (width *2);
Console.WriteLine("היקף:" +area);
Console.WriteLine("שטח:" +scope);