public string FirstName {get; set;}
public string LastName {get; set;}
public DateTime Birthday {get; set;}
public static void Main()
Console.WriteLine("Hello World");
Person human = new Person();
Person human2 = new Person();
human.FirstName = "Fred";
human.LastName = "Flintstone";
human.Birthday = new DateTime(1952, 2, 29);
human2.FirstName = "George";
human2.LastName = "Getson";
human2.Birthday = new DateTime(1950, 1, 12);
Console.WriteLine($"{human.FirstName} {human.LastName} {human.Birthday}");
Console.WriteLine($"{human2.FirstName} {human2.LastName} {human2.Birthday}");