//Assignment 4 Andrew Wilkie

public interface Car{
	
	public String getDescription();
	
	public double getCost();
}