public static void Main()
Person first = new Person ("Pesho", 20);
Person second = new Person("Gosho", 18);
Person third = new Person ("Stamat", 43);
public Person(string name, int age)
Console.WriteLine("My name is {0} and I am {1} years old", name, age);