

class Sporty extends Vehicle {


	private int hp = 0;

	public Sporty(int hp, String vin, String make, String model) {
		super(vin, make, model);
		
		this.hp = hp;
	}

	@Override
	public String toString(){
		return String.format("Sporty: %s, ", hp) + super.toString();
	}

}
