public string FName {get; set;}
public string LName {get; set;}
public DateTime Birthday {get; set;}
public int HeightInches {get; set;}
public string GetFullName() {
return $"{FName} {LName}";
return DateTime.Now.Year - Birthday.Year;
public static void Main()
Console.WriteLine("Hello World");
Person human = new Person();
Person human2 = new Person();
human.Birthday = new DateTime(1982, 1, 30);
human2.LName = "Frazier";
human2.Birthday = new DateTime(1900, 12, 30);
human2.HeightInches = 62;
Console.WriteLine($"{human.GetFullName()} is {human.GetAge()} years old. {human.HeightInches}");
Console.WriteLine($"{human2.GetFullName()} is {human2.GetAge()} years old. {human2.HeightInches}");