public class Student136 extends Student {
    private String unixID;
    private String labSection;

    public String getUnixID(){
        return unixID;
    }
    public void setUnixID(String newID) {
        if(getName().equals(newID)) {
           System.out.println("Error: name and UnixID are the same");
        }
        unixID = newID;
    }

    public String getLabSection() {
        return labSection;
    }

    @Override
    public String toString() {
		String ret = super.toString();
        return ret + " UnixID: " + unixID;
	}

    public Student136(String name, String unixID) {
        super(name);
        setUnixID(unixID);
    }


    public static void main(String[] args) {
        Student136 test = new Student136("Steve", "srm2");
        test.setGraduationYear(2027);
        System.out.println(test.toString());
    }
    
}
