static void Main(string[] args)
        {
            Person tom = new Person();
            Person bob = new Person("Bob");
            Person sam = new Person("Sam", 25);

            sam.GetInfo();
            tom.GetInfo();
            bob.GetInfo();
        }