//5.5 м̳ʱĹ췽
public class Person
{
	protected String name,phone,address;
	public Person()
	{
		this(" ", " "," ");
	}
	public Person(String aName,String aPhone,String anAddress)
	{
		name = aName;
		phone = aPhone;
		address = anAddress;
	}
}
class Employees extends Person
{
		protected int id;
		protected String workphone;
		public Employees()
		{
			//˴ù췽Person()
			this(0,"");
		}
		public Employees(int aId,String aPhone)
		{
			//˴ù췽Person()
			id=aId;
			workphone=aPhone;
		}
}
class Professor extends Employees
{
	protected String research;
	public Professor()
	{
		super();
		research="";	
	}
	public Professor(int aId,String aPhone,String aResearch)
	{
		super(aId,aPhone);
		research=aResearch;
	}
}

