public class Bike extends Vehicle{ protected Bike(String name){ this.s=name; } @Override public void run(){ System.out.println(s+" is running"); } }