using System.Collections.Generic;
using System.Threading.Tasks;
public class student : Person
public string schoollastgraduated;
public class employee : Person
public class faculty : employee
public string designation;
public string collegedepartment;
public string subjectload;
public class staff : employee
public string designation;
public string servicedepartment;
public static void Main(string[] args)
student student = new student();
student.name = "Nicole Jastin Justo";
Console.WriteLine("Student: " + student.name+" "+student.phone+" "+student.course);
faculty faculty = new faculty();
faculty.name = "Justo Nicole";
faculty.subjectload = "SSP, Data Structure";
Console.WriteLine("Faculty: " + faculty.name + " " + faculty.salary + " " + faculty.subjectload);
staff staff = new staff();
staff.name = "Jastin Justo";
staff.designation = "Facilitator";
staff.servicedepartment = "CITE";
Console.WriteLine("Staff: " + staff.name + " " + staff.servicedepartment + " " + staff.designation);