class Program
{
static void Main()
{
var person = new Person
{
Name = "raunchytve",
BirthDate = new DateTime(2006, 7, 6),
BirthPlace = "Çorum",
Education = "Çorum Teknik ve Endustri Meslek Lisesi / Bilgisayar (Yazılım)",
Occupation = "Yazılım Geliştirici"
};
person.PrintBiography();
}
}