public static void Main()
double sum = num1 + num2;
Console.WriteLine("Please read my born year");
string born = Console.ReadLine();
int bornYear = int.Parse(born);
int age = currentYear - bornYear;
Console.WriteLine($"I was born in {bornYear} My age is:{age}");
Console.WriteLine("What is the rectangle length");
string ln = Console.ReadLine();
double length = double.Parse(ln);
Console.WriteLine("What is the rectangle width");
string wd = Console.ReadLine();
double width = double.Parse(wd);
double area = length * width;
double perimeter = 2 * (length + width);
Console.WriteLine($"The area is {area}, the hekef is {perimeter}");