public Duck(Swimmable s, Walkable w) { this.s = s; this.w = w; }
public Human(Walkable w, Swimmable s) { this.s = s; this.w = w; }