public class PetOwner implements Walkable {

    private String name;

    public PetOwner(String name) {

	this.name = name;
    }

    public void walk() {

	System.out.println(this.name + " : Exercise is good for me.");
    }
}
