using System.Reflection.Metadata.Ecma335;
public string FirstName { get; set; }
public string LastName { get; set; }
public string SSN { get; set; }
public class Employee : Person
public double Salary { get; set; }
public class Receptionist : Employee
public string BossName { get; set; }
public class Teacher : Employee
public string Subject { get; set; }
public class Student : Person
public double GPA { get; set; }
static void Main(string[] args)