public class Car { String name; short speed; public Car(String name, short speed) { this.name = name; this.speed = speed; } }