class Tricycle extends Cycle { public Tricycle(String color, String brand) { super(color, brand); numWheels = 3; } }