/*
 * Task 00:
 * 
 * complete the following methods to meet the 
 * indicated specifications
 */

package task00;

public class NameAndMatricNumber {

	// the method "name" returns your full name (as in student id)
	public String name() {
		// COMPLETE THIS METHOD
	}
	
	// the method "matricNumber" returns your matriculation number (as in student id),
	// including the letters at the beginning and the end (if any).
	public String matricNumber() {
		// COMPLETE THIS METHOD
	}
}
