public class BmwCar extends Car {
   int price = 100000;
	
   public void getPrice(int price) {
      System.out.println("The price of the car is:" + price);
   }
}