
public class Person implements Speaker {
	
	public void speak() {
		
		System.out.println("Hi!");
		
	} //end speak

} //end Person