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