public class Car extends Vehicle { @Override public void run() { System.out.println("Car is running on the road"); } }