
class EV extends Car {

	private int batteryLife = 0;

	public EV(String vin) {
		super(vin);
	}

	public EV(String vin, int batlife) {
		super(vin);
		batteryLife = batlife;
	}
}
